fix: linting issues and tsc issues #234
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run automated tests | |
on: push | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22.18.0 | |
registry-url: https://registry.npmjs.org/ | |
- run: | | |
npm ci | |
npm run lint:ci | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22.18.0 | |
registry-url: https://registry.npmjs.org/ | |
- run: | | |
npm ci | |
npm run test:ci | |
type-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22.18.0 | |
registry-url: https://registry.npmjs.org/ | |
- run: | | |
npm ci | |
npm run tsc:ci |