File tree Expand file tree Collapse file tree 5 files changed +44
-19
lines changed Expand file tree Collapse file tree 5 files changed +44
-19
lines changed Original file line number Diff line number Diff line change 1+ name : ' Tests: node.js < 10'
2+
3+ on : [pull_request, push]
4+
5+ permissions :
6+ contents : read
7+
8+ jobs :
9+ tests :
10+ uses : ljharb/actions/.github/workflows/node.yml@main
11+ with :
12+ range : ' < 10'
13+ type : minors
14+ command : npm run tests-only
15+
16+ node :
17+ name : ' node < 10'
18+ needs : [tests]
19+ runs-on : ubuntu-latest
20+ steps :
21+ - run : ' echo tests completed'
Original file line number Diff line number Diff line change 1+ name : ' Tests: node.js >= 10'
2+
3+ on : [pull_request, push]
4+
5+ permissions :
6+ contents : read
7+
8+ jobs :
9+ tests :
10+ uses : ljharb/actions/.github/workflows/node.yml@main
11+ with :
12+ range : ' >= 10'
13+ type : minors
14+ command : npm run tests-only
15+
16+ node :
17+ name : ' node >= 10'
18+ needs : [tests]
19+ runs-on : ubuntu-latest
20+ steps :
21+ - run : ' echo tests completed'
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1616 "tape" : " ^4.0.1"
1717 },
1818 "scripts" : {
19- "test" : " tape test/*.js"
19+ "tests-only" : " tape test/*.js" ,
20+ "test" : " npm run tests-only"
2021 },
2122 "repository" : {
2223 "type" : " git" ,
Original file line number Diff line number Diff line change 33parse a bundle generated by
44[ browser-pack] ( https://npmjs.org/package/browser-pack )
55
6- [ ![ build status] ( https://secure.travis-ci.org/browserify/browser-unpack.png )] ( http://travis-ci.org/browserify/browser-unpack )
7-
86# example
97
108```
You can’t perform that action at this time.
0 commit comments