-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4558 from alphagov/setup-node-delay
Workaround delays in `~/.npm` cache restore time
- Loading branch information
Showing
4 changed files
with
8 additions
and
11 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
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4.0.0 | ||
uses: actions/setup-node@v3.8.2 | ||
with: | ||
cache: npm | ||
node-version: 8 # Node.js 8 supported by Dart Sass v1.0.0 | ||
|
@@ -47,10 +47,9 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4.0.0 | ||
uses: actions/setup-node@v3.8.2 | ||
with: | ||
cache: npm | ||
check-latest: true | ||
node-version-file: .nvmrc # Node.js project version must support Dart Sass v1 | ||
|
||
- name: Install package | ||
|
@@ -77,7 +76,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4.0.0 | ||
uses: actions/setup-node@v3.8.2 | ||
with: | ||
cache: npm | ||
node-version: 4 # Node.js 4 supported by Node Sass v3.4.0 | ||
|
@@ -100,10 +99,9 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4.0.0 | ||
uses: actions/setup-node@v3.8.2 | ||
with: | ||
cache: npm | ||
check-latest: true | ||
node-version-file: .nvmrc # Node.js project version must support Node Sass v8.x | ||
|
||
- name: Install package | ||
|
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
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