Skip to content

Commit ed7a698

Browse files
committed
Do workflows work?
1 parent 9168d01 commit ed7a698

File tree

3 files changed

+1652
-1
lines changed

3 files changed

+1652
-1
lines changed

.github:workflows:build.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Node CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
strategy:
10+
matrix:
11+
node-version: [8.x, 10.x, 12.x]
12+
13+
steps:
14+
- uses: actions/checkout@v1
15+
- name: Use Node.js ${{ matrix.node-version }}
16+
uses: actions/setup-node@v1
17+
with:
18+
node-version: ${{ matrix.node-version }}
19+
- name: npm install test
20+
run: |
21+
npm ci
22+
npm test
23+
env:
24+
CI: true

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@ test/subdir/
55
test/*.xml
66
node-debug*
77
npm-debug*
8-
package-lock.json

0 commit comments

Comments
 (0)