We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7faae4 commit dfe191bCopy full SHA for dfe191b
3 files changed
.github/workflows/nodejs.yml
@@ -1,28 +1,16 @@
1
-name: Node CI
2
-
3
-on:
4
- pull_request:
5
- branches:
6
- - master
+name: Build
+on: [push]
7
jobs:
8
build:
9
10
runs-on: ubuntu-latest
11
12
- strategy:
13
- matrix:
14
- node-version: [8.x, 10.x, 12.x]
15
16
steps:
17
- - uses: actions/checkout@v1
18
- - name: Use Node.js ${{ matrix.node-version }}
+ - uses: actions/checkout@v2
+ - name: Use Node.js
19
uses: actions/setup-node@v1
20
with:
21
- node-version: ${{ matrix.node-version }}
22
- - name: npm install, build, and test
23
- run: |
24
- npm install
25
- npm run build --if-present
26
- npm test
+ node-version: '14.x'
+ - run: npm install
+ - run: npm run build --if-present
+ - run: npm test
27
env:
28
CI: true
.github/workflows/test.yml
.travis.yml
0 commit comments