Some checks failed
CI / test (push) Failing after 1m49s
- Included Node.js setup step to specify the Node version. - Added installation step to ensure dependencies are installed before linting and type-checking.
18 lines
375 B
YAML
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
|