docs: tighten README — fix residual zh, compress comparison, add Quic… #33
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, "claude/**"] | |
| pull_request: | |
| jobs: | |
| build-and-test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| node: ['20', '22'] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node ${{ matrix.node }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| # No `cache: 'npm'` — setup-node's cache action requires a | |
| # committed package-lock.json to compute its key, which we | |
| # don't ship yet. Re-enable once a lockfile lands. | |
| # No package-lock.json committed yet, so use `npm install` rather | |
| # than `npm ci`. The semver ranges in package.json are tight | |
| # enough for reproducible builds. | |
| - run: npm install --no-audit --no-fund | |
| - run: npm run build | |
| - run: npm test |