unreal-chat/.forgejo/workflows/ci.yaml
Juan Sebastian Montoya 28279942ad
Some checks failed
CI / test (push) Failing after 4s
chore: update CI workflow to include linting and type-checking
- Added linting step to ensure code quality.
- Included type-checking step to verify TypeScript types.
2025-05-06 00:35:44 -05:00

12 lines
226 B
YAML

name: CI
on: [push]
jobs:
test:
runs-on: docker
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Lint
run: npm run lint
- name: Check Types
run: npm run check-types