fix: keep transient reductions out of reference registries #421
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, next, workflow] | |
| pull_request: | |
| branches: [main, next] | |
| jobs: | |
| run-unit-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: "22" | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Run unit tests | |
| run: pnpm run test:unit:ci | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-results-unit-tests | |
| path: test-result-unit.json | |
| - uses: dorny/test-reporter@v1.6.0 | |
| if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }} | |
| with: | |
| name: test-results / unit-tests | |
| path: test-result-unit.json | |
| reporter: mocha-json | |
| run-spec-v4-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: "22" | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Test spec v4 | |
| run: pnpm run test:4:ci | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-results-spec-4 | |
| path: test-result-spec4.json | |
| - uses: dorny/test-reporter@v1.6.0 | |
| if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }} | |
| with: | |
| name: test-results / spec-4 | |
| path: test-result-spec4.json | |
| reporter: mocha-json | |
| run-spec-v6-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: "22" | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Test spec v6 | |
| run: pnpm run test:6:ci | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-results-spec-6 | |
| path: test-result-spec6.json | |
| - uses: dorny/test-reporter@v1.6.0 | |
| if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }} | |
| with: | |
| name: test-results / spec-6 | |
| path: test-result-spec6.json | |
| reporter: mocha-json | |
| run-spec-v7-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: "22" | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Test spec v7 | |
| run: pnpm run test:7:ci | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-results-spec-7 | |
| path: test-result-spec7.json | |
| - uses: dorny/test-reporter@v1.6.0 | |
| if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }} | |
| with: | |
| name: test-results / spec-7 | |
| path: test-result-spec7.json | |
| reporter: mocha-json | |
| run-spec-2019-09-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: "22" | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Test spec 2019-09 | |
| run: pnpm run test:2019:ci | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-results-spec-2019-09 | |
| path: test-result-spec2019-09.json | |
| - uses: dorny/test-reporter@v1.6.0 | |
| if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }} | |
| with: | |
| name: test-results / spec-2019-09 | |
| path: test-result-spec2019-09.json | |
| reporter: mocha-json | |
| run-spec-2020-12-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: "22" | |
| cache: "pnpm" | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Test spec 2020-12 | |
| run: pnpm run test:2020:ci | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-results-spec-2020-12 | |
| path: test-result-spec2020-12.json | |
| - uses: dorny/test-reporter@v1.6.0 | |
| if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }} | |
| with: | |
| name: test-results / spec-2020-12 | |
| path: test-result-spec2020-12.json | |
| reporter: mocha-json |