Skip to content

Commit 9b83f6c

Browse files
ci(std): fix test install in CI
Signed-off-by: Victor Adossi <123968127+vados-cosmonic@users.noreply.github.com>
1 parent 457dd85 commit 9b83f6c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -421,11 +421,13 @@ jobs:
421421
wasmtime-cli
422422
423423
- name: Install NPM packages
424-
run: npm install
424+
working-directory: packages/${{ matrix.workspace }}
425+
run: |
426+
npm install
425427
426-
- name: Build jco, jco-std
428+
- name: Build jco-transpile, jco-std
427429
run: |
428-
npm run build
430+
npm run build -w packages/jco-transpile
429431
npm --workspace packages/${{ matrix.workspace }} run build
430432
431433
- name: Test jco-std workspace

0 commit comments

Comments
 (0)