-
Notifications
You must be signed in to change notification settings - Fork 260
308 lines (287 loc) · 11.2 KB
/
checks.yml
File metadata and controls
308 lines (287 loc) · 11.2 KB
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
name: PR Checks
on:
pull_request:
branches:
- main
# The only commits that will contain changes to the masterlist will be releases
paths-ignore:
- MASTERLIST.md
env:
UPSTREAM_BRANCH: origin/${{ github.base_ref }}
concurrency:
group: pr-${{ github.event.pull_request.number }}-checks
cancel-in-progress: true
jobs:
# ---------- Initial steps ----------
# Check that the changes introduced in this PR include changesets for packages that would need them
check-changesets:
name: Adapter changes accompanied by a changeset
runs-on: ['ubuntu-latest']
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Check whether adapter change also has a changeset
id: adapter_change_has_changeset
run: ./.github/scripts/validate-changesets.sh
validate-changeset-packages:
name: Changeset package references exist in repo
runs-on: [ubuntu-latest]
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node and Yarn
uses: actions/setup-node@v4
with:
node-version: 22
- name: Enable Yarn from packageManager
run: corepack enable
- name: Check that changeset package references exist in repo
run: |
EXISTING=$(./.github/scripts/list-packages-adapters.sh | jq -r '.packages[].name' | sort -u)
REFERENCED=$(./.github/scripts/get-unreleased-packages.sh | sed 's/^- //' | sort -u)
BAD=$(echo "$REFERENCED" | while read p; do echo "$EXISTING" | grep -qFx "$p" || echo "$p"; done)
if [ -n "$BAD" ]; then
echo "::error::The following packages are referenced in .changeset but do not exist in the repo:"
echo "$BAD" | while read p; do
FILES=$(for f in .changeset/*.md; do [ "$(basename "$f")" = "README.md" ] && continue; grep -qF "'$p'" "$f" 2>/dev/null && echo "$f"; done)
echo "::error:: - $p"
echo "$FILES" | while read f; do [ -n "$f" ] && echo "::error:: mentioned in: $f"; done
done
exit 1
fi
# Set up yarn and install dependencies, caching them to be reused across other steps in this workflow
install-packages:
name: Install and verify dependencies
runs-on: [ubuntu-latest]
outputs:
changed-packages: ${{ steps.changed-adapters.outputs.CHANGED_PACKAGES }}
adapter-list: ${{ steps.changed-adapters.outputs.CHANGED_ADAPTERS }}
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up and install dependencies
uses: ./.github/actions/setup
with:
base-branch: origin/${{ github.base_ref }}
- name: Verify no files were modified by yarn install
run: |
# Check if any files were modified by yarn install
if ! git diff --exit-code; then
echo "::error::Running 'yarn install' resulted in file changes. Please run 'yarn install' locally and commit the changes."
echo "Changed files:"
git diff --name-only
exit 1
fi
echo "✅ No file changes after yarn install"
- name: Build list of changed packages and changed adapters
id: changed-adapters
run: ./.github/scripts/changed-adapters.sh
detect-streams-adapter-changes:
name: Detect streams adapter changes
runs-on: [ubuntu-latest]
outputs:
streams-adapter-changed: ${{ steps.filter.outputs.streams }}
permissions:
pull-requests: read
steps:
- name: Detect whether streams adapter changed
id: filter
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
with:
filters: |
streams:
- 'packages/streams-adapter/**'
# ---------- Adapter checks (only for changed EAs) ----------
# Check that there are no compilation errors in test.
# There are many existing tests with compilation errors, so we skip them
# until we can fix them.
compile-tests:
name: Compile tests for changed packages
runs-on: [ubuntu-latest]
if: needs.install-packages.outputs.changed-packages != '[]'
needs:
- check-changesets
- install-packages
permissions:
contents: read
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up and install dependencies
uses: ./.github/actions/setup
- name: Compile tests
env:
CHANGED_PACKAGES: ${{ needs.install-packages.outputs.changed-packages }}
run: |
echo "Tests that should compile:"
configs_to_compile=($(echo "$CHANGED_PACKAGES" | jq '.[].location + "/tsconfig.test.json"' -r || true))
if [ ${#configs_to_compile[@]} -eq 0 ]; then
echo "No tests to compile."
else
yarn tsc -b --noEmit "${configs_to_compile[@]}"
fi
# Run unit tests
unit-tests:
name: Run unit tests for changed adapters
runs-on: [ubuntu-latest]
if: needs.install-packages.outputs.changed-packages != '[]'
needs:
- check-changesets
- install-packages
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up and install dependencies
uses: ./.github/actions/setup
- name: Run unit tests
env:
CHANGED_PACKAGES: ${{ needs.install-packages.outputs.changed-packages }}
run: yarn test --passWithNoTests $(echo $CHANGED_PACKAGES | jq '.[].location + "/test/unit"' -r | tr '\n' ' ')
streams-unit-tests:
name: Run Go unit tests for streams adapter
runs-on: [ubuntu-latest]
if: needs.detect-streams-adapter-changes.outputs.streams-adapter-changed == 'true'
needs:
- detect-streams-adapter-changes
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: packages/streams-adapter/go.mod
- name: Run streams adapter unit tests
run: |
cd packages/streams-adapter
go test ./...
# Run integration tests
integration-tests:
name: Run integration tests for changed adapters
runs-on: [ubuntu-latest]
if: needs.install-packages.outputs.changed-packages != '[]'
needs:
- check-changesets
- install-packages
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up and install dependencies
uses: ./.github/actions/setup
- name: Run integration tests
env:
CHANGED_PACKAGES: ${{ needs.install-packages.outputs.changed-packages }}
run: yarn test --passWithNoTests $(echo $CHANGED_PACKAGES | jq '.[].location + "/test/integration"' -r | tr '\n' ' ')
# Run non-unit, non-integration tests
non-unit-non-integration-tests:
name: Run non-unit, non-integration tests for changed packages
runs-on: [ubuntu-latest]
if: needs.install-packages.outputs.changed-packages != '[]'
needs:
- check-changesets
- install-packages
permissions:
contents: read
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up and install dependencies
uses: ./.github/actions/setup
- name: Run tests
env:
CHANGED_PACKAGES: ${{ needs.install-packages.outputs.changed-packages }}
run: |
# TODO: Reduce the ignored patterns to only /dist/, /test/unit/ and
# /test/integration/ by making the other tests actually pass.
yarn test --passWithNoTests $(echo $CHANGED_PACKAGES | jq '.[].location + "/"' -r | tr '\n' ' ') --testPathIgnorePatterns="$(echo $CHANGED_PACKAGES | jq --raw-output 'map(.location | . + "/dist/|" + . + "/test/unit/|" + . + "/test/integration") | join("|")')|/test/e2e/|/test/transports/"
# Run linters
linters:
name: Run linters and formatters
runs-on: [ubuntu-latest]
needs:
- check-changesets
- install-packages
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up and install dependencies
uses: ./.github/actions/setup
- name: Lint all files
run: yarn lint
- name: Check for formatting errors
run: yarn format:check
# Run documentation tests (check that the doc generation succeeds to avoid problems downstream)
run-documentation-check:
name: Documentation generation test
runs-on: [ubuntu-latest]
if: needs.install-packages.outputs.changed-packages != '[]'
needs:
- check-changesets
- install-packages
env:
METRICS_ENABLED: false
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up and install dependencies
uses: ./.github/actions/setup
- name: Test Master List Generation
run: yarn generate:master-list -v
- name: Test README Generation
run: yarn generate:readme -v
# Run a script to check that modified v3 adapters have the latest framework version
ea-framework-version-check:
name: Check that changed adapters have the latest EA framework version
runs-on: [ubuntu-latest]
if: needs.install-packages.outputs.changed-packages != '[]'
needs:
- check-changesets
- install-packages
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up and install dependencies
uses: ./.github/actions/setup
- name: Check for outdated ea-framework dependencies
env:
CHANGED_PACKAGES: ${{ needs.install-packages.outputs.changed-packages }}
run: |
changed_packages=$(echo $CHANGED_PACKAGES | jq '.[].location' -r | tr '\n' ' ')
dependency="@chainlink/external-adapter-framework"
v3_packages=()
outdated_packages=()
packages=$(find packages -name 'package.json')
latest_version=$(curl -sH "Accept: application/vnd.github.v3+json" "https://api.github.com/repos/smartcontractkit/ea-framework-js/contents/package.json" | jq -r '.content' | base64 -d | jq -r '.version')
# get the list of v3 EAs
for file in $(echo $packages); do
if jq -e ".dependencies[\"$dependency\"]" "$file" >/dev/null; then
v3_packages+=("$(dirname $file)")
fi
done
# check if changed code is part of any v3 EA
for changedFile in $changed_packages; do
for package in "${v3_packages[@]}"; do
if [[ "$changedFile" == "$package"* ]]; then
# found change in v3 EA, comparing versions
local_version=$(jq -r ".dependencies[\"$dependency\"]" "$package/package.json")
if [ "$local_version" != "$latest_version" ] && ! grep -q "^$package$" <<< "${outdated_packages[@]}"; then
outdated_packages+=("$package")
fi
fi
done
done
# print and error if there are outdated adapters
if [ ${#outdated_packages[@]} -gt 0 ]; then
echo "The following packages have an outdated \"$dependency\" dependency:"
for file in "${outdated_packages[@]}"; do
echo "- $file"
done
exit 1
fi