Skip to content

Commit 31ba9f5

Browse files
committed
chore: add GitHub CI
1 parent cd31da9 commit 31ba9f5

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/nodejs.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Node CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: macOS-latest
9+
10+
steps:
11+
- uses: actions/checkout@master
12+
- name: Use Node.js 10.x
13+
uses: actions/setup-node@v1
14+
with:
15+
version: 10.x
16+
- name: npm install, build, and test
17+
run: |
18+
npm install
19+
npm test

0 commit comments

Comments
 (0)