We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27048c5 commit 1383d95Copy full SHA for 1383d95
.github/workflows/test.yml
@@ -12,12 +12,12 @@ jobs:
12
build:
13
runs-on: macOS-latest
14
steps:
15
- - uses: actions/checkout@master
16
- - name: Use Node.js 14.x
17
- uses: actions/setup-node@v2
+ - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag: v4.1.1
+ - name: Setup Node.js
+ uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # tag: v4.0.1
18
with:
19
- node-version: 14.x
20
- - name: npm install, build, and test
21
- run: |
22
- npm install
23
- npm test
+ node-version: lts/-1
+ - name: Install Dependencies
+ run: npm ci
+ - name: Run Tests
+ run: npm test
0 commit comments