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 872c6b9 commit f890300Copy full SHA for f890300
.github/workflows/ci.yml
@@ -67,15 +67,18 @@ jobs:
67
cache: npm
68
node-version: ${{ env.NODE_VERSION_USED_FOR_DEVELOPMENT }}
69
70
+ - name: Install Dependencies
71
+ run: npm ci --ignore-scripts
72
+
73
+ - name: Check that package-lock.json doesn't have conflicts
74
+ run: npm ls --depth 999
75
76
- name: Run npm install
- run: npm install --ignore-scripts --engine-strict --strict-peer-deps
77
+ run: npm install --force --package-lock-only --ignore-scripts --engine-strict --strict-peer-deps
78
79
- name: Check that package-lock.json is in sync with package.json
80
run: git diff --exit-code package-lock.json
81
- - name: Check that package-lock.json doesn't have conflicts
- run: npm ls --depth 999
-
82
integrationTests:
83
name: Run integration tests
84
runs-on: ubuntu-latest
0 commit comments