ci: Using npm ci instead of npm install to reuse package-lock.json (#3648)

This commit is contained in:
Alex Grozav
2022-07-04 11:59:03 +03:00
committed by GitHub
parent 7d968ec202
commit 6b9289349f
2 changed files with 2 additions and 2 deletions

View File

@@ -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:

View File

@@ -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