Skip to content
This repository was archived by the owner on Aug 29, 2023. It is now read-only.

Commit f8aa311

Browse files
committed
fix(ci): revert cache strategy to tested one
1 parent faa2dd8 commit f8aa311

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

commands/setup-node/action.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ runs:
44
using: "composite"
55
steps:
66
- uses: actions/setup-node@v3
7-
with: { node-version: '18', cache: 'yarn' }
7+
with: { node-version: '18' }
8+
- uses: actions/cache@v3
9+
with:
10+
path: 'node_modules'
11+
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
812
- name: Yarn install deps from lockfile
913
shell: bash
1014
run: yarn --frozen-lockfile

0 commit comments

Comments
 (0)