Some checks failed
CI / test (push) Failing after 4s
- Added linting step to ensure code quality. - Included type-checking step to verify TypeScript types.
12 lines
226 B
YAML
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
|