File tree Expand file tree Collapse file tree 2 files changed +7
-19
lines changed Expand file tree Collapse file tree 2 files changed +7
-19
lines changed Original file line number Diff line number Diff line change 1414 matrix :
1515 node-version : [8, 10, 12]
1616
17+ name : Test / Node ${{ matrix.node-version }}
1718 steps :
1819 - uses : actions/checkout@v2
1920 with :
2728 - name : npm install
2829 run : npm install
2930
31+ - name : Lint
32+ run : npm run lint
33+
3034 - name : Run tests
3135 run : npm run test_ci
Original file line number Diff line number Diff line change 11TESTS = test/index.html
22REPORTER = dot
33
4- build :
5- @npm run build
4+ build lint test test-browser test-server test_ci :
5+ @npm run $@
66 @echo " "
77
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