We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3346dbc commit e285804Copy full SHA for e285804
.github/workflows/cd.yml
@@ -26,7 +26,7 @@ jobs:
26
env:
27
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
28
- name: Install Dependencies
29
- run: npm install && lerna bootstrap --ignore-scripts
+ run: npm ci --no-package-lock && lerna bootstrap --ignore-scripts
30
shell: bash
31
- name: Release
32
run: npm run publish:ci
.github/workflows/ci.yml
@@ -27,6 +27,6 @@ jobs:
with:
path: ~/.npm
key: ${{ runner.OS }}-dependency-cache-${{ hashFiles('**/package.json') }}
- - run: npm install
+ - run: npm ci
- run: npm run bootstrap
- run: npm run lint
.npmrc
@@ -1 +1 @@
1
-package-lock=false
+package-lock=true
0 commit comments