Reject trailing junk after chord brackets; fix error line numbers after continuations #29
Workflow file for this run
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: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run lint | |
| - run: npm run check:spec | |
| - run: npm run preset:check | |
| - run: npm test | |
| - name: Cache Playwright browsers | |
| id: playwright-cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cache/ms-playwright | |
| key: ${{ runner.os }}-playwright-${{ hashFiles('package-lock.json') }} | |
| # Always run the install step: --with-deps installs apt packages that | |
| # the browser-binary cache doesn't preserve, and `playwright install` | |
| # itself is a no-op for browsers already present in the cache dir. | |
| - name: Install Playwright browsers + system deps | |
| run: npx playwright install --with-deps chromium webkit | |
| - run: npm run test:e2e |