We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03aa701 commit c2c481bCopy full SHA for c2c481b
.github/workflows/nodejs.yml
@@ -1,28 +1,18 @@
1
name: Node CI
2
3
-on:
4
- pull_request:
5
- branches:
6
- - master
+on: push
7
jobs:
8
build:
9
- runs-on: ${{ matrix.os }}
10
-
11
- strategy:
12
- fail-fast: false
13
- matrix:
14
- os: [ubuntu-latest, windows-latest, macos-latest]
15
+ runs-on: ubuntu-latest
16
steps:
17
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v2
18
- name: Use Node.js 12.x
19
uses: actions/setup-node@v1
20
with:
21
node-version: 12.x
22
- - name: npm install, build, and test
+ - name: npm install, and test
23
run: |
24
npm install
25
- npm run build --if-present
26
npm test
27
env:
28
CI: true
0 commit comments