fix: robust multipath statistics (arc splitting + 3-sigma editing) #16
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@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| # BKG/ESA are intermittently unreachable from GitHub runners; the | |
| # fetch script skips existing files, so a cache hit is a no-op. | |
| - name: Cache test fixtures | |
| uses: actions/cache@v4 | |
| with: | |
| path: test-fixtures | |
| key: test-data-${{ hashFiles('scripts/fetch-test-data.sh') }} | |
| - run: bash scripts/fetch-test-data.sh | |
| - run: pnpm run lint | |
| - run: npx tsc --noEmit | |
| - run: pnpm test | |
| - run: pnpm run build |