Skip to content

Commit d04b18f

Browse files
Add CI (#47)
Run build and test on PR
1 parent f8e4d11 commit d04b18f

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/ci.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: CI
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- name: Setup Node.js environment
9+
uses: actions/[email protected]
10+
- run: sudo npm install -g typescript nyc mocha
11+
- run: npm install
12+
- run: npm run build
13+
- run: npm run test
14+

0 commit comments

Comments
 (0)