Skip to content

Commit bd40b88

Browse files
committed
doesn't npm respect process cwd?
1 parent 9cc28e0 commit bd40b88

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -523,16 +523,17 @@ jobs:
523523
path: packages/test
524524

525525
- name: Install ReScript package
526+
shell: bash
526527
run: |
528+
cd packages/test
527529
npm i --ignore-scripts --no-audit \
528530
rescript-${{ needs.package.outputs.rescript_version }}.tgz
529-
shell: bash
530-
working-directory: packages/test
531531
532532
- name: Test installation
533-
run: npx rescript -h && npx rescript build && cat src/Test.bs.js
534533
shell: bash
535-
working-directory: packages/test
534+
run: |
535+
cd packages/test
536+
npx rescript -h && npx rescript build && cat src/Test.bs.js
536537
537538
publish:
538539
needs: [package, installationTest]

0 commit comments

Comments
 (0)