File tree 8 files changed +43
-212
lines changed
8 files changed +43
-212
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : ' Tests: node.js < 10'
2
+
3
+ on : [pull_request, push]
4
+
5
+ jobs :
6
+ tests :
7
+ uses : ljharb/actions/.github/workflows/node.yml@main
8
+ with :
9
+ range : ' < 10'
10
+ type : minors
11
+ command : npm run tests-only
12
+
13
+ node :
14
+ name : ' node < 10'
15
+ needs : [tests]
16
+ runs-on : ubuntu-latest
17
+ steps :
18
+ - run : ' echo tests completed'
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3,24 +3,5 @@ name: 'Tests: pretest/posttest'
3
3
on : [pull_request, push]
4
4
5
5
jobs :
6
- pretest :
7
- runs-on : ubuntu-latest
8
-
9
- steps :
10
- - uses : actions/checkout@v2
11
- - uses : ljharb/actions/node/install@main
12
- name : ' nvm install lts/* && npm install'
13
- with :
14
- node-version : ' lts/*'
15
- - run : npm run pretest
16
-
17
- posttest :
18
- runs-on : ubuntu-latest
19
-
20
- steps :
21
- - uses : actions/checkout@v2
22
- - uses : ljharb/actions/node/install@main
23
- name : ' nvm install lts/* && npm install'
24
- with :
25
- node-version : ' lts/*'
26
- - run : npm run posttest
6
+ tests :
7
+ uses : ljharb/actions/.github/workflows/pretest.yml@main
Original file line number Diff line number Diff line change
1
+ name : ' Tests: node.js >= 10'
2
+
3
+ on : [pull_request, push]
4
+
5
+ jobs :
6
+ tests :
7
+ uses : ljharb/actions/.github/workflows/node.yml@main
8
+ with :
9
+ range : ' >= 10'
10
+ type : minors
11
+ command : npm run tests-only
12
+
13
+ node :
14
+ name : ' node >= 10'
15
+ needs : [tests]
16
+ runs-on : ubuntu-latest
17
+ steps :
18
+ - run : ' echo tests completed'
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
11
11
steps :
12
- - uses : actions/checkout@v2
13
- - uses : ljharb/rebase@master
14
- env :
15
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
12
+ - uses : actions/checkout@v2
13
+ - uses : ljharb/rebase@master
14
+ env :
15
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
11
11
steps :
12
- - uses : ljharb/require-allow-edits@main
12
+ - uses : ljharb/require-allow-edits@main
You can’t perform that action at this time.
0 commit comments