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 e6e1f50 commit 9182cf7Copy full SHA for 9182cf7
.github/workflows/deploy-builder-frontend.yml
@@ -35,11 +35,19 @@ jobs:
35
project_id: ${{ env.PROJECT_ID }}
36
37
- name: Setup Node.js
38
- working-directory: builder-frontend
39
uses: actions/setup-node@v4
40
with:
41
node-version: '18'
+
42
+ - name: Cache node modules
43
+ uses: actions/cache@v3
44
+ with:
45
+ path: builder-frontend/node_modules
46
+ key: ${{ runner.os }}-node-${{ hashFiles('builder-frontend/package-lock.json') }}
47
+ restore-keys: |
48
+ ${{ runner.os }}-node-
49
cache: 'npm'
50
+ cache-dependency-path: 'builder-frontend/package-lock.json'
51
52
- name: Install dependencies
53
working-directory: builder-frontend
0 commit comments