-
Notifications
You must be signed in to change notification settings - Fork 20
204 lines (199 loc) · 5.72 KB
/
run-all-tests.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
name: "🔍 Tests"
on:
pull_request:
branches: [main]
merge_group:
workflow_dispatch:
jobs:
linting:
name: lint
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v3
- name: node
uses: actions/setup-node@v3
with:
node-version: 16
cache: "npm"
- name: install dependencies
run: npm ci
- name: install dependencies with apt
run: |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo apt-get install software-properties-common
sudo add-apt-repository 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-16 main'
sudo apt-get install clang-tidy-16
sudo rm -f /usr/bin/clang-tidy
sudo ln -s /usr/bin/clang-tidy-16 /usr/bin/clang-tidy
- name: build project
# Build project so that imports can be checked during linting
run: npm run build
- name: build fuzzer
# Build the native addon so that CMake generates compile_commands.json that is needed by clang-tidy
run: npm run build --workspace=@jazzer.js/fuzzer
- name: check formatting and linting
run: npm run check
unit_tests:
name: unit tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2019, macos-11, ubuntu-20.04]
node: [16]
include:
# Test all LTS versions on Linux
- os: ubuntu-20.04
node: 18
- os: ubuntu-20.04
node: 20
steps:
- name: checkout
uses: actions/checkout@v3
- name: node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: "npm"
- name: MSVC (windows)
uses: ilammy/msvc-dev-cmd@v1
if: contains(matrix.os, 'windows')
- name: install dependencies
run: npm ci
- name: build project
run: npm run build
- name: build fuzzer
run: npm run build --workspace=@jazzer.js/fuzzer
- name: run all tests
run: npm run test
examples:
name: examples
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2019, macos-11, ubuntu-20.04]
node: [16]
include:
# Test all LTS versions on Linux
- os: ubuntu-20.04
node: 18
- os: ubuntu-20.04
node: 20
steps:
- name: checkout
uses: actions/checkout@v3
- name: node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: "npm"
- name: MSVC (windows)
uses: ilammy/msvc-dev-cmd@v1
if: contains(matrix.os, 'windows')
- name: install dependencies
run: npm ci
- name: build project
run: npm run build
- name: build fuzzer
run: npm run build --workspace=@jazzer.js/fuzzer
- name: run all examples
run: npm run example
fuzz_tests:
name: fuzz tests
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v3
- name: node
uses: actions/setup-node@v3
with:
node-version: 16
cache: "npm"
- name: install dependencies
run: npm ci
- name: build project
run: npm run build
- name: build fuzzer
run: npm run build --workspace=@jazzer.js/fuzzer
- name: run all fuzz tests
run: node fuzztests/runFuzzTests.js
end-to-end:
name: end-to-end
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v3
# Build with node.js 16
- name: node
uses: actions/setup-node@v3
with:
node-version: 16
cache: "npm"
- name: pack jazzer.js
run: cd end-to-end && ./package-jazzer-js.sh
- name: build example
run: cd end-to-end && npm install --save-dev *.tgz && npm run build
# Run with different node.js versions
# all in one job to avoid rebuilding
- name: "node 14"
uses: actions/setup-node@v3
with:
node-version: 14
cache: "npm"
- name: run tests
run: cd end-to-end && npx jest
- name: "node 16"
uses: actions/setup-node@v3
with:
node-version: 16
cache: "npm"
- name: run tests
run: cd end-to-end && npx jest
- name: "node 18"
uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- name: run tests
run: cd end-to-end && npx jest
- name: "node 20"
uses: actions/setup-node@v3
with:
node-version: 20
cache: "npm"
- name: run tests
run: cd end-to-end && npx jest
auto-merge:
needs:
- linting
- unit_tests
- examples
- fuzz_tests
- end-to-end
permissions:
pull-requests: write
contents: write
runs-on: ubuntu-20.04
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1.3.6
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve
if:
${{steps.metadata.outputs.update-type !=
'version-update:semver-major'}}
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Enable auto-merge
if:
${{steps.metadata.outputs.update-type !=
'version-update:semver-major'}}
run: gh pr merge --auto --rebase "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}