This repository was archived by the owner on Jul 24, 2026. It is now read-only.
fix(nix): regenerate npmDepsHash against main's package-lock.json #5
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: Nix | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: DeterminateSystems/determinate-nix-action@v3 | |
| # `nix flake check` rather than `nix build`: it builds the package *and* | |
| # evaluates every `checks.*`, so the help smoke test and the completions | |
| # contract actually gate the PR. | |
| - run: nix flake check --print-build-logs |