File tree 2 files changed +25
-5
lines changed
2 files changed +25
-5
lines changed Original file line number Diff line number Diff line change
1
+ name : Lint
2
+
3
+ on : [push]
4
+
5
+ jobs :
6
+ build :
7
+ runs-on : ${{ matrix.os }}
8
+ strategy :
9
+ fail-fast : false
10
+ matrix :
11
+ os : [ubuntu-latest]
12
+ node-version : [12]
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+
16
+ - name : Set up Node ${{ matrix.node-version }}
17
+ uses : actions/setup-node@v1
18
+ with :
19
+ node-version : ${{ matrix.node-version }}
20
+
21
+ - name : Install deps
22
+ run : npm install
23
+
24
+ - name : Lint
25
+ run : npm run ci:lint
Original file line number Diff line number Diff line change 46
46
- name : Install deps
47
47
run : npm install
48
48
49
- - name : Lint
50
- run : npm run ci:lint
51
- # Don't run lint a hundred times, also it breaks on windows.
52
- if : matrix.python-version == 3.6 && matrix.node-version == 12 && matrix.os == 'ubuntu-latest'
53
-
54
49
- name : Test
55
50
run : npm run test
56
51
env :
You can’t perform that action at this time.
0 commit comments