Skip to content

Commit 6de8862

Browse files
committed
fix: Git Actions build error
1 parent b850a80 commit 6de8862

1 file changed

Lines changed: 10 additions & 4 deletions

File tree

.github/workflows/monacle-nix-build.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,23 +26,29 @@ jobs:
2626
experimental-features = nix-command flakes
2727
accept-flake-config = true
2828
29-
- name: Nix build monacle-run (flake evaluation + derivations)
29+
- name: Nix build monacle-run
3030
working-directory: infra
3131
run: |
3232
set -euo pipefail
3333
nix build -L .#monacle-run
3434
35-
- name: Build pinned node from flake and add to PATH
35+
- name: Build pinned node and add to PATH
3636
working-directory: infra
3737
run: |
3838
set -euo pipefail
3939
nix build -L .#nodejs_20_20_0 -o ./node
4040
echo "$PWD/node/bin" >> "$GITHUB_PATH"
41+
42+
- name: Debug node/npm
43+
run: |
44+
set -euo pipefail
45+
which node
46+
which npm
4147
node -v
4248
npm -v
4349
44-
- name: Next build (using pinned node)
50+
- name: Next build
4551
run: |
4652
set -euo pipefail
47-
npm ci
53+
npm ci --include=dev
4854
npm run build

0 commit comments

Comments
 (0)