Skip to content

Commit 2d40577

Browse files
committed
fix: change working directory before installing root dependencies in GitHub Actions workflow
1 parent dd43f38 commit 2d40577

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/publish-npm-packages.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ jobs:
2828
env:
2929
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3030
- name: Install root dependencies
31-
run: npm ci
31+
run: |
32+
cd packages/plugin-ext
33+
npm ci
3234
- name: Build plugin-ext package
3335
run: |
3436
cd packages/plugin-ext

0 commit comments

Comments
 (0)