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 379d8d4 commit ba5499eCopy full SHA for ba5499e
.github/workflows/cd.yml
@@ -26,7 +26,7 @@ jobs:
26
env:
27
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
28
- name: Install Dependencies
29
- run: npm ci --no-package-lock && lerna bootstrap --ignore-scripts
+ run: npm install && 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 ci
+ - run: npm install
- run: npm run bootstrap
- run: npm run lint
0 commit comments