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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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