We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ed2da5 commit 049ef00Copy full SHA for 049ef00
1 file changed
.github/workflows/test-cache-restore.yml
@@ -43,7 +43,6 @@ jobs:
43
restore-keys: |
44
node-cache-${{ runner.os }}-${{ matrix.package-manager }}-
45
46
- # Install dependencies
47
- name: Install Dependencies
48
run: |
49
if [ "${{ matrix.package-manager }}" = "npm" ]; then
@@ -52,8 +51,9 @@ jobs:
52
51
pnpm install
53
elif [ "${{ matrix.package-manager }}" = "yarn" ]; then
54
yarn install --frozen-lockfile
+ fi
55
+
56
- # Run tests
57
- name: Run Tests
58
59
@@ -62,3 +62,5 @@ jobs:
62
pnpm test
63
64
yarn test
65
66
0 commit comments