Skip to content

Commit

Permalink
Revert action.yml cache changes
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-jeremy committed Sep 5, 2023
1 parent 128f339 commit 4003f49
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ runs:
uses: actions/setup-node@v3
with:
node-version: 18.16.0
cache: yarn
- name: Cache
uses: actions/cache@v3
id: cache
with:
path: '**/node_modules'
key: yarn-v1-${{ runner.os }}-${{ hashFiles('.nvmrc') }}-${{ hashFiles('**/yarn.lock') }}
- name: Install
run: yarn --immutable
shell: bash
Expand Down

0 comments on commit 4003f49

Please sign in to comment.