fix(extract): read 'precise location' as CCPA precise-geolocation #1002
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 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run typecheck | |
| - run: npm run lint | |
| - run: npm run format:check | |
| # Coverage is a superset of `npm run test` (runs the suite + enforces the | |
| # spec-v7 regression-only coverage floor); the cross-OS matrix keeps the | |
| # plain, faster `npm run test` for determinism checks on every platform. | |
| - run: npm run coverage | |
| - run: npm run build |