Skip to content

Commit 48ada9e

Browse files
committed
Added npm i step inside projects folder in the workflow file
1 parent 92faa01 commit 48ada9e

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/publish_module.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ jobs:
1919

2020
- name: Install dependencies
2121
run: npm ci --legacy-peer-deps
22-
22+
23+
- name: Install library dependencies
24+
working-directory: ./projects/sunbird-video-player
25+
run: npm ci --legacy-peer-deps
26+
2327
- name: Build and publish package
2428
env:
2529
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/publish_web_component.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ jobs:
2020
- name: Install dependencies
2121
run: npm ci --legacy-peer-deps
2222

23+
- name: Install library dependencies
24+
working-directory: ./projects/sunbird-video-player
25+
run: npm ci --legacy-peer-deps
26+
2327
- name: Build and publish package
2428
env:
2529
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)