File tree Expand file tree Collapse file tree 2 files changed +39
-14
lines changed
Expand file tree Collapse file tree 2 files changed +39
-14
lines changed Original file line number Diff line number Diff line change 1+ name : Run Tests
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+
9+ jobs :
10+ unit :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v2
14+ - uses : actions/setup-node@v1
15+ with :
16+ node-version : 12
17+ registry-url : https://registry.npmjs.org/
18+ - run : npm i
19+ - run : npm run unit
20+ format :
21+ runs-on : ubuntu-latest
22+ steps :
23+ - uses : actions/checkout@v2
24+ - uses : actions/setup-node@v1
25+ with :
26+ node-version : 12
27+ registry-url : https://registry.npmjs.org/
28+ - run : npm i
29+ - run : npm run standard
30+ gitdiff :
31+ runs-on : ubuntu-latest
32+ steps :
33+ - uses : actions/checkout@v2
34+ - uses : actions/setup-node@v1
35+ with :
36+ node-version : 12
37+ registry-url : https://registry.npmjs.org/
38+ - run : npm i
39+ - run : npm run gitdiff
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments