We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 063fd90 commit 30f4b57Copy full SHA for 30f4b57
1 file changed
.github/workflows/deploy.yml
@@ -10,14 +10,21 @@ jobs:
10
runs-on: ubuntu-latest
11
12
steps:
13
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
14
15
- - uses: actions/setup-node@v3
+ - uses: actions/setup-node@v4
16
with:
17
- node-version: 18
+ node-version: '20.19'
18
+ cache: 'npm'
19
- - name: Install client dependencies
20
- run: cd client && npm install --legacy-peer-deps
+ - name: Clean npm cache and reinstall dependencies
21
+ run: |
22
+ cd client
23
+ rm -rf node_modules package-lock.json
24
+ npm cache clean --force
25
+ npm install
26
27
- name: Build client
- run: cd client && npm run build
28
29
30
+ npm run build
0 commit comments