We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e08993a commit 10d26ccCopy full SHA for 10d26cc
.github/workflows/ci.yml
@@ -55,6 +55,24 @@ jobs:
55
exit 1
56
fi
57
58
+ checkPackageLock:
59
+ name: Check health of package-lock.json file
60
+ runs-on: ubuntu-latest
61
+ steps:
62
+ - name: Checkout repo
63
+ uses: actions/checkout@v2
64
+
65
+ - name: Setup Node.js
66
+ uses: actions/setup-node@v1
67
+ with:
68
+ node-version: ${{ env.NODE_VERSION_USED_FOR_DEVELOPMENT }}
69
70
+ - name: Run npm install
71
+ run: npm install --package-lock-only --engine-strict --strict-peer-deps
72
73
+ - name: Check that package-lock.json is in sync with package.json
74
+ run: git diff --exit-code package-lock.json
75
76
integrationTests:
77
name: Run integration tests
78
runs-on: ubuntu-latest
0 commit comments