fix(session): convert overlong pronunciation items to dictation inste… #87
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - name: Install root dependencies | |
| run: npm install | |
| - name: Install all workspace dependencies | |
| run: npm run install:all | |
| - name: Lint | |
| run: npm run lint | |
| - name: Type check client | |
| run: npx tsc --noEmit -p client/tsconfig.json | |
| - name: Test server | |
| run: npm run test:server | |
| - name: Test client | |
| run: npm run test:client |