Skip to content

Commit dfe191b

Browse files
committed
Remove stale branch name
1 parent b7faae4 commit dfe191b

File tree

3 files changed

+8
-45
lines changed

3 files changed

+8
-45
lines changed

.github/workflows/nodejs.yml

Lines changed: 8 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,16 @@
1-
name: Node CI
2-
3-
on:
4-
pull_request:
5-
branches:
6-
- master
1+
name: Build
2+
on: [push]
73
jobs:
84
build:
9-
105
runs-on: ubuntu-latest
11-
12-
strategy:
13-
matrix:
14-
node-version: [8.x, 10.x, 12.x]
15-
166
steps:
17-
- uses: actions/checkout@v1
18-
- name: Use Node.js ${{ matrix.node-version }}
7+
- uses: actions/checkout@v2
8+
- name: Use Node.js
199
uses: actions/setup-node@v1
2010
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
11+
node-version: '14.x'
12+
- run: npm install
13+
- run: npm run build --if-present
14+
- run: npm test
2715
env:
2816
CI: true

.github/workflows/test.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

.travis.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)