fix: publish workflow — dispatch trigger, version-aligned tags #8
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: | |
| check: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20, 22] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - run: npm ci | |
| # Node 22+ supports coverage thresholds; Node 20 runs tests only | |
| - name: Lint + test with 100% coverage | |
| if: matrix.node-version >= 22 | |
| run: npm run check | |
| - name: Lint + test (no coverage enforcement) | |
| if: matrix.node-version < 22 | |
| run: npm run lint && npm test |