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 293f0c9 commit 45d9317Copy full SHA for 45d9317
.github/workflows/node.js.yml
@@ -29,8 +29,18 @@ jobs:
29
node-version: ${{ matrix.node-version }}
30
cache: 'npm'
31
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
42
- run: npm ci
- - run: npm install react-query mapbox-gl eslint-plugin-import@^2.25.2
43
44
- run: npm audit fix
45
- run: npm audit fix --force # Force fix remaining vulnerabilities if possible
46
- run: NODE_OPTIONS=--max_old_space_size=8192 npm run build --if-present
0 commit comments