File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3333 - name : Install dependencies
3434 run : bun install --frozen-lockfile
3535
36+ - name : Verify Nix lockfile is up to date
37+ run : |
38+ bun run nix:update-lock
39+ if ! git diff --exit-code nix/bun.lock.nix; then
40+ echo "::error::Nix lockfile is out of date. Please run 'bun run nix:update-lock' and commit the changes to nix/bun.lock.nix."
41+ exit 1
42+ fi
43+
3644 - name : Format check
3745 run : bun run format:check
3846
Original file line number Diff line number Diff line change 3636 - name : Install dependencies
3737 run : bun install --frozen-lockfile
3838
39+ - name : Verify Nix lockfile is up to date
40+ run : |
41+ bun run nix:update-lock
42+ if ! git diff --exit-code nix/bun.lock.nix; then
43+ echo "::error::Nix lockfile is out of date. Please run 'bun run nix:update-lock' and commit the changes to nix/bun.lock.nix."
44+ exit 1
45+ fi
46+
3947 - name : Format check
4048 run : bun run format:check
4149
You can’t perform that action at this time.
0 commit comments