File tree 9 files changed +14
-14
lines changed 9 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 13
13
14
14
jobs :
15
15
build-tarball :
16
- if : github.event.pull_request.draft == false
16
+ if : github.event.pull_request.draft == true
17
17
env :
18
18
PYTHON_VERSION : 3.9
19
19
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 15
15
16
16
jobs :
17
17
build-windows :
18
- if : github.event.pull_request.draft == false
18
+ if : github.event.pull_request.draft == true
19
19
runs-on : windows-latest
20
20
steps :
21
21
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change 22
22
23
23
jobs :
24
24
coverage-linux :
25
- if : github.event.pull_request.draft == false
25
+ if : github.event.pull_request.draft == true
26
26
runs-on : ubuntu-latest
27
27
steps :
28
28
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change 22
22
23
23
jobs :
24
24
coverage-windows :
25
- if : github.event.pull_request.draft == false
25
+ if : github.event.pull_request.draft == true
26
26
runs-on : windows-latest
27
27
steps :
28
28
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change 14
14
15
15
jobs :
16
16
lint-addon-docs :
17
- if : github.event.pull_request.draft == false
17
+ if : github.event.pull_request.draft == true
18
18
runs-on : ubuntu-latest
19
19
steps :
20
20
- uses : actions/checkout@v2
27
27
- name : Lint addon docs
28
28
run : NODE=$(command -v node) make lint-addon-docs
29
29
lint-cpp :
30
- if : github.event.pull_request.draft == false
30
+ if : github.event.pull_request.draft == true
31
31
runs-on : ubuntu-latest
32
32
steps :
33
33
- uses : actions/checkout@v2
40
40
- name : Lint C/C++ files
41
41
run : make lint-cpp
42
42
lint-md :
43
- if : github.event.pull_request.draft == false
43
+ if : github.event.pull_request.draft == true
44
44
runs-on : ubuntu-latest
45
45
steps :
46
46
- uses : actions/checkout@v2
62
62
NODE_RELEASED_VERSIONS : ${{ steps.get-released-versions.outputs.NODE_RELEASED_VERSIONS }}
63
63
64
64
lint-js :
65
- if : github.event.pull_request.draft == false
65
+ if : github.event.pull_request.draft == true
66
66
runs-on : ubuntu-latest
67
67
steps :
68
68
- uses : actions/checkout@v2
75
75
- name : Lint JavaScript files
76
76
run : NODE=$(command -v node) make lint-js
77
77
lint-py :
78
- if : github.event.pull_request.draft == false
78
+ if : github.event.pull_request.draft == true
79
79
runs-on : ubuntu-latest
80
80
steps :
81
81
- uses : actions/checkout@v2
98
98
- name : Lint Shell scripts
99
99
run : tools/lint-sh.js .
100
100
lint-codeowners :
101
- if : github.event.pull_request.draft == false
101
+ if : github.event.pull_request.draft == true
102
102
runs-on : ubuntu-latest
103
103
steps :
104
104
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change 13
13
14
14
jobs :
15
15
build-docs :
16
- if : github.event.pull_request.draft == false
16
+ if : github.event.pull_request.draft == true
17
17
runs-on : ubuntu-latest
18
18
steps :
19
19
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change 19
19
20
20
jobs :
21
21
test-asan :
22
- if : github.event.pull_request.draft == false
22
+ if : github.event.pull_request.draft == true
23
23
runs-on : ubuntu-latest
24
24
env :
25
25
CC : clang
Original file line number Diff line number Diff line change 15
15
16
16
jobs :
17
17
test-linux :
18
- if : github.event.pull_request.draft == false
18
+ if : github.event.pull_request.draft == true
19
19
runs-on : ubuntu-latest
20
20
steps :
21
21
- uses : actions/checkout@v2
Original file line number Diff line number Diff line change 15
15
16
16
jobs :
17
17
test-macOS :
18
- if : github.event.pull_request.draft == false
18
+ if : github.event.pull_request.draft == true
19
19
runs-on : macos-latest
20
20
steps :
21
21
- uses : actions/checkout@v2
You can’t perform that action at this time.
0 commit comments