File tree Expand file tree Collapse file tree 2 files changed +62
-22
lines changed Expand file tree Collapse file tree 2 files changed +62
-22
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ branches :
4
+ - master
5
+ pull_request :
6
+ branches :
7
+ - master
8
+ name : Continuous Integration
9
+
10
+ jobs :
11
+ lint :
12
+ name : Lint
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - name : Checkout
16
+ uses : actions/checkout@v2
17
+ - name : Install Node.js
18
+ uses : actions/setup-node@v1
19
+ with :
20
+ node-version : 14.x
21
+ - run : npm install
22
+ - name : Linting
23
+ run : npm run lint
24
+ compile :
25
+ name : Compile
26
+ runs-on : ubuntu-latest
27
+ steps :
28
+ - name : Checkout
29
+ uses : actions/checkout@v2
30
+ - name : Install Node.js
31
+ uses : actions/setup-node@v1
32
+ with :
33
+ node-version : 14.x
34
+ - run : npm install
35
+ - name : Compiling
36
+ run : npm run compile
37
+ unit :
38
+ name : Unit Tests
39
+ runs-on : ubuntu-latest
40
+ steps :
41
+ - name : Checkout
42
+ uses : actions/checkout@v2
43
+ - name : Install Node.js
44
+ uses : actions/setup-node@v1
45
+ with :
46
+ node-version : 14.x
47
+ - run : npm install
48
+ - run : npm run unit
49
+ e2e :
50
+ name : E2E Tests
51
+ runs-on : ubuntu-latest
52
+ steps :
53
+ - name : Checkout
54
+ uses : actions/checkout@v2
55
+ - name : Install Node.js
56
+ uses : actions/setup-node@v1
57
+ with :
58
+ node-version : 14.x
59
+ - run : npm install
60
+ - run : npm install
61
+ working-directory : ./e2e
62
+ - run : npm run e2e
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments