Skip to content

Commit

Permalink
Upgrade actions/cache Version
Browse files Browse the repository at this point in the history
  • Loading branch information
bh2smith committed Oct 14, 2024
1 parent b2835dc commit 6fd7186
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,16 @@ jobs:
with:
node-version: "20"

- name: Cache node modules
uses: actions/cache@v4
with:
path: |
node_modules
~/.cache/yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: E2E Test
run: yarn && yarn test e2e
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
node-version: "20"

- name: Cache node modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
node_modules
Expand Down

0 comments on commit 6fd7186

Please sign in to comment.