Skip to content

Commit

Permalink
ci: fail the build if package-lock.json is out of sync (#4101)
Browse files Browse the repository at this point in the history
  • Loading branch information
netroy authored Sep 14, 2022
1 parent 9a59d0a commit b2807ce
Show file tree
Hide file tree
Showing 4 changed files with 107 additions and 223 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: npm install, build, and test
run: |
npm install -g npm@latest
npm install
npm ci
npm run build --if-present
npm test
npm run lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-pull-requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: npm install, build, and test
run: |
npm install -g npm@latest
npm install
npm ci
npm run build --if-present
npm test
npm run lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: |
cd n8n
npm install -g npm@latest
npm install
npm ci
npm run build --if-present
env:
CI: true
Expand Down
Loading

0 comments on commit b2807ce

Please sign in to comment.