Skip to content
Snippets Groups Projects
Unverified Commit 15bc3c45 authored by Jed Fox's avatar Jed Fox Committed by GitHub
Browse files

Partition GitHub Actions cache based on Node version (#1118)

This should fix the test failures on `master` — currently tests are
failing because the cache was created with an old version of Node.
parent ded6ee8a
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,7 @@ runs: ...@@ -12,7 +12,7 @@ runs:
id: cache id: cache
with: with:
path: '**/node_modules' path: '**/node_modules'
key: yarn-v1-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} key: yarn-v1-${{ runner.os }}-${{ hashFiles('.nvmrc') }}-${{ hashFiles('**/yarn.lock') }}
- name: Install - name: Install
run: yarn --immutable run: yarn --immutable
shell: bash shell: bash
......
---
category: Maintenance
authors: [j-f1]
---
Partition GitHub Actions cache based on Node version
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment