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.
2 parents bf3b0fc + 44477f8 commit 3b020c7Copy full SHA for 3b020c7
.github/workflows/test.yml
@@ -37,12 +37,6 @@ jobs:
37
with:
38
node: ${{ env.NODE_VERSION }}
39
40
- - name: Save build artifacts
41
- uses: actions/cache/save@v4
42
- with:
43
- path: .
44
- key: ${{ env.CACHE_KEY }}
45
-
46
unit:
47
needs: build # Require build to complete before running tests
48
@@ -59,11 +53,8 @@ jobs:
59
53
node-version: ${{ env.NODE_VERSION }}
60
54
cache: npm
61
55
62
- - name: Restore build artifacts
63
- uses: actions/cache/restore@v4
64
65
66
56
+ - name: Install dependencies
57
+ run: npm ci --include=dev
67
58
68
- name: Run tests
69
run: npm run test
0 commit comments