We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 055ace0 commit ce31c9cCopy full SHA for ce31c9c
1 file changed
.github/workflows/ci.yml
@@ -27,12 +27,18 @@ jobs:
27
uses: actions/setup-node@v4
28
with:
29
node-version: "20"
30
- cache: "npm"
31
- cache-dependency-path: frontend/package-lock.json
+
+ - name: Cache npm dependencies
32
+ uses: actions/cache@v4
33
+ with:
34
+ path: ~/.npm
35
+ key: ${{ runner.os }}-node-${{ hashFiles('frontend/package-lock.json') }}
36
+ restore-keys: |
37
+ ${{ runner.os }}-node-
38
39
- name: Install frontend dependencies
40
working-directory: frontend
- run: npm install
41
+ run: npm ci
42
43
- name: Lint (Python and frontend)
44
run: make lint
0 commit comments