Skip to content

Commit d533e32

Browse files
author
Lazar Djurdjevic
committed
fix: add npm registry update step to release and continuous workflows
1 parent b27960e commit d533e32

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/continuous.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ jobs:
2222
*/*/node_modules
2323
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
2424

25+
- name: Update npm registry
26+
run: npm run update:registry
27+
2528
- name: Install dependencies
2629
run: npm ci
2730

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ jobs:
4343
- name: Install Lerna globally
4444
run: npm install lerna --global
4545

46+
- name: Update npm registry
47+
run: npm run update:registry
48+
4649
- name: Install dependencies
4750
run: npm ci
4851

0 commit comments

Comments
 (0)