Commit 35dfb22 1 parent 7d4670f commit 35dfb22 Copy full SHA for 35dfb22
File tree 6 files changed +70
-173
lines changed
6 files changed +70
-173
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
+ 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'
Original file line number Diff line number Diff line change
1
+ name : ' Tests: pretest/posttest'
2
+
3
+ on : [pull_request, push]
4
+
5
+ jobs :
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'
Original file line number Diff line number Diff line change
1
+ name : Automatic Rebase
2
+
3
+ on : [pull_request]
4
+
5
+ jobs :
6
+ _ :
7
+ name : " Automatic Rebase"
8
+
9
+ runs-on : ubuntu-latest
10
+
11
+ steps :
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
1
+ name : Require “Allow Edits”
2
+
3
+ on : [pull_request_target]
4
+
5
+ jobs :
6
+ _ :
7
+ name : " Require “Allow Edits”"
8
+
9
+ runs-on : ubuntu-latest
10
+
11
+ steps :
12
+ - uses : ljharb/require-allow-edits@main
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments