Skip to content

Commit

Permalink
ci: Using npm ci instead of npm install to reuse package-lock.json (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgrozav authored Jul 4, 2022
1 parent 7d968ec commit 6b92893
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
name: npm install and build
run: |
cd n8n
npm install
npm ci
npm run bootstrap
npm run build --if-present
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm ci
npm run bootstrap
npm run build --if-present
npm test
Expand Down

0 comments on commit 6b92893

Please sign in to comment.