generated from sourcecred/template-instance
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0c0783f
commit 3663127
Showing
1 changed file
with
6 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,15 +11,13 @@ jobs: | |
NODE_OPTIONS: --max_old_space_size=14000 | ||
steps: | ||
- uses: actions/[email protected] | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
persist-credentials: false # Required to make github pages deployment work correctly | ||
node-version: 20.x | ||
|
||
- name: Cache Data # Cache SourceCred Data, invalidating if any of the config changes or the SC version is updated | ||
uses: actions/[email protected] | ||
with: | ||
path: '**/cache' | ||
key: SC-${{ runner.os }}-${{ hashFiles('**/config.json', '**/sourcecred.json', '**/yarn.lock') }} | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'npm' | ||
cache-dependency-path: yarn.lock | ||
|
||
- name: Install Packages 🔧 | ||
run: yarn --frozen-lockfile |