README: add SNAPSHOT URL #214
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: Verifier Reproducibility | |
| on: [push, pull_request] | |
| env: | |
| LC_ALL: C | |
| TZ: UTC | |
| jobs: | |
| reproduce: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6 | |
| with: | |
| node-version: 20 | |
| - name: Run reproducibility test | |
| run: node ci/verify-reproducibility.mjs | |
| - name: Verify fixture integrity | |
| run: | | |
| echo "Checking fixture files..." | |
| test -f fixtures/bundles/minimal-valid/bundle.bin || exit 1 | |
| test -f fixtures/bundles/minimal-valid/manifest.json || exit 1 | |
| test -f fixtures/bundles/minimal-valid/EXPECTED_VERDICT.json || exit 1 | |
| echo "✓ All fixture files present" | |