File tree 5 files changed +44
-19
lines changed
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 16
16
"tape" : " ^4.0.1"
17
17
},
18
18
"scripts" : {
19
- "test" : " tape test/*.js"
19
+ "tests-only" : " tape test/*.js" ,
20
+ "test" : " npm run tests-only"
20
21
},
21
22
"repository" : {
22
23
"type" : " git" ,
Original file line number Diff line number Diff line change 3
3
parse a bundle generated by
4
4
[ browser-pack] ( https://npmjs.org/package/browser-pack )
5
5
6
- [ ![ build status] ( https://secure.travis-ci.org/browserify/browser-unpack.png )] ( http://travis-ci.org/browserify/browser-unpack )
7
-
8
6
# example
9
7
10
8
```
You can’t perform that action at this time.
0 commit comments