Skip to content

Commit 45d00ce

Browse files
authored
Add lock file version check to CI (#7333)
* Add lock file version check to CI * Update CHANGELOG.md * Update ci.yml * test failing check with lock file version 2 * Revert "test failing check with lock file version 2" This reverts commit a5b4293.
1 parent 50e5557 commit 45d00ce

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.github/workflows/ci.yml

+10
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,16 @@ jobs:
7979
- uses: actions/checkout@v2
8080
- name: Build docker image
8181
uses: docker/build-push-action@v2
82+
check-lock-file-version:
83+
name: NPM Lock File Version
84+
timeout-minutes: 5
85+
runs-on: ubuntu-18.04
86+
steps:
87+
- uses: actions/checkout@v2
88+
- name: Check NPM lock file version
89+
uses: mansona/npm-lockfile-version@v1
90+
with:
91+
version: 1
8292
check-mongo:
8393
strategy:
8494
matrix:

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ ___
129129
- Use Node.js 15.13.0 in CI (Olle Jonsson) [#7312](https://github.com/parse-community/parse-server/pull/7312)
130130
- Fix file upload issue for S3 compatible storage (Linode, DigitalOcean) by avoiding empty tags property when creating a file (Ali Oguzhan Yildiz) [#7300](https://github.com/parse-community/parse-server/pull/7300)
131131
- Add building Docker image as CI check (Manuel Trezza) [#7332](https://github.com/parse-community/parse-server/pull/7332)
132+
- Add NPM package-lock version check to CI (Manuel Trezza) [#7333](https://github.com/parse-community/parse-server/pull/7333)
132133
___
133134
## 4.5.0
134135
[Full Changelog](https://github.com/parse-community/parse-server/compare/4.4.0...4.5.0)

0 commit comments

Comments
 (0)