Skip to content

Commit 45d9317

Browse files
committed
Give me one more try, baby just one. more. try...
1 parent 293f0c9 commit 45d9317

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/node.js.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,18 @@ jobs:
2929
node-version: ${{ matrix.node-version }}
3030
cache: 'npm'
3131
cache-dependency-path: '**/package-lock.json'
32+
33+
34+
- name: Remove node_modules and package-lock.json
35+
run: |
36+
rm -rf node_modules
37+
rm -f package-lock.json
38+
39+
- name: Install dependencies and generate package-lock.json
40+
run: npm install
41+
3242
- run: npm ci
33-
- run: npm install react-query mapbox-gl eslint-plugin-import@^2.25.2
43+
3444
- run: npm audit fix
3545
- run: npm audit fix --force # Force fix remaining vulnerabilities if possible
3646
- run: NODE_OPTIONS=--max_old_space_size=8192 npm run build --if-present

0 commit comments

Comments
 (0)