-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added cache step to github action, updated task versions * string-safe workflow name * bad id name in npm cache * use core node setup * removed cache flag * updated coalesced values for node 18 - it's too fast
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: pr-validation | ||
name: "pr-validation" | ||
|
||
on: | ||
pull_request: | ||
|
@@ -12,17 +12,17 @@ jobs: | |
|
||
strategy: | ||
matrix: | ||
node-version: [14.x, 16.x] | ||
node-version: [14.x, 16.x, 18.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Start Redis | ||
uses: supercharge/[email protected] | ||
- name: npm install, build, and test | ||
- name: npm install, build, test and benchmark | ||
run: | | ||
npm install | ||
npm run lint | ||
|
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