File tree 2 files changed +7
-19
lines changed
2 files changed +7
-19
lines changed Original file line number Diff line number Diff line change 14
14
matrix :
15
15
node-version : [8, 10, 12]
16
16
17
+ name : Test / Node ${{ matrix.node-version }}
17
18
steps :
18
19
- uses : actions/checkout@v2
19
20
with :
27
28
- name : npm install
28
29
run : npm install
29
30
31
+ - name : Lint
32
+ run : npm run lint
33
+
30
34
- name : Run tests
31
35
run : npm run test_ci
Original file line number Diff line number Diff line change 1
1
TESTS = test/index.html
2
2
REPORTER = dot
3
3
4
- build :
5
- @npm run build
4
+ build lint test test-browser test-server test_ci :
5
+ @npm run $@
6
6
@echo " "
7
7
8
- test :
9
- @npm run test
10
- @echo " "
11
-
12
- test-browser :
13
- @npm run test-browser
14
- @echo " "
15
-
16
- test-server :
17
- @npm run test-server
18
- @echo " "
19
-
20
- test_ci :
21
- @npm run test_ci
22
- @echo " "
23
-
24
- .PHONY : test test_ci
8
+ .PHONY : build lint test test-browser test-server test_ci
You can’t perform that action at this time.
0 commit comments