File tree Expand file tree Collapse file tree 3 files changed +25
-28
lines changed
Expand file tree Collapse file tree 3 files changed +25
-28
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ pull_request :
5+ branches : [ master ]
6+
7+ jobs :
8+ build :
9+ runs-on : ubuntu-latest
10+
11+ steps :
12+ - uses : actions/checkout@v2
13+
14+ - name : Setup Node.js
15+ uses : actions/setup-node@v2.1.2
16+ with :
17+ node-version : 10.x
18+
19+ - name : Install NPM modules
20+ run : npm ci
21+ working-directory : ./tools
22+
23+ - name : Run CI tests
24+ run : npm test
25+ working-directory : ./tools
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 66 "license" : " MIT" ,
77 "scripts" : {
88 "test" : " mocha -r ts-node/register tests.ts" ,
9- "test-ci" : " mocha --reporter mocha-junit-reporter -r ts-node/register tests.ts" ,
109 "serve" : " ts-node server.ts"
1110 },
1211 "devDependencies" : {
You can’t perform that action at this time.
0 commit comments