File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -67,15 +67,18 @@ jobs:
67
67
cache : npm
68
68
node-version : ${{ env.NODE_VERSION_USED_FOR_DEVELOPMENT }}
69
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
+
70
76
- name : Run npm install
71
- 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
72
78
73
79
- name : Check that package-lock.json is in sync with package.json
74
80
run : git diff --exit-code package-lock.json
75
81
76
- - name : Check that package-lock.json doesn't have conflicts
77
- run : npm ls --depth 999
78
-
79
82
integrationTests :
80
83
name : Run integration tests
81
84
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments