unreal-chat/.forgejo/workflows/ci.yaml
Juan Sebastian Montoya a1590e7228
Some checks failed
CI / test (push) Failing after 1m49s
chore: enhance CI workflow by adding Node setup and installation steps
- Included Node.js setup step to specify the Node version.
- Added installation step to ensure dependencies are installed before linting and type-checking.
2025-05-06 00:44:02 -05:00

18 lines
375 B
YAML

name: CI
on: [push]
jobs:
test:
runs-on: docker
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Check Types
run: npm run check-types