We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d8d732b + 164b1ff commit 106855dCopy full SHA for 106855d
1 file changed
.github/workflows/nodejs.yml
@@ -1,6 +1,6 @@
1
name: Node CI
2
3
-on: [push]
+on: [push, pull_request]
4
jobs:
5
build:
6
runs-on: ${{ matrix.os }}
@@ -11,14 +11,14 @@ jobs:
11
os: [ubuntu-latest, macos-latest]
12
13
steps:
14
- - uses: actions/checkout@v2
15
- - name: Use Node.js 14.x
16
- uses: actions/setup-node@v1
17
- with:
18
- node-version: 14.x
19
- - name: npm install, build, and test
20
- run: |
21
- npm install
22
- npm test
23
- env:
24
- CI: true
+ - uses: actions/checkout@v3
+ - name: Use Node.js 16.x
+ uses: actions/setup-node@v3
+ with:
+ node-version: 16.x
+ - name: npm install, build, and test
+ run: |
+ npm install
+ npm test
+ env:
+ CI: true
0 commit comments