Fix: Errors resulting from identical TPS file names in different dire… #256
This file contains 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: CI | |
on: [ push, pull_request ] | |
jobs: | |
verify: | |
name: CI | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
script: | |
- name: Typecheck | |
command: test:types | |
- name: Lint | |
command: test:lint | |
- name: Unit tests | |
command: test | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- run: npm ci --ignore-scripts --no-audit --no-fund | |
- run: npm rebuild | |
- run: npm run ${{ matrix.script.command }} |