Skip to content

Commit 3e787cf

Browse files
committed
ci: cover shared runtime and tools regressions
1 parent 611c101 commit 3e787cf

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
while IFS= read -r file; do
4040
node --check "$file" >/dev/null
4141
done < <(
42-
find macos windows -type f \( -name '*.mjs' -o -name '*.js' \) -print
42+
find runtime tools macos windows -type f \( -name '*.mjs' -o -name '*.js' \) -print
4343
)
4444
4545
- name: Check Windows PowerShell source encoding
@@ -129,6 +129,7 @@ jobs:
129129
run: |
130130
node --test macos/tests/*.test.mjs
131131
node --test windows/tests/*.test.mjs
132+
node --test tools/*.test.mjs
132133
node macos/scripts/injector.mjs --check-payload >/dev/null
133134
node windows/scripts/injector.mjs --check-payload >/dev/null
134135

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ jobs:
208208
while IFS= read -r file; do
209209
node --check "$file" >/dev/null
210210
done < <(
211-
find macos windows -type f \( -name '*.mjs' -o -name '*.js' \) -print
211+
find runtime tools macos windows -type f \( -name '*.mjs' -o -name '*.js' \) -print
212212
)
213213
214214
# macos/tests/run-tests.sh already re-checks the macOS runtime assertions
@@ -259,6 +259,7 @@ jobs:
259259
set -euo pipefail
260260
node --test macos/tests/*.test.mjs
261261
node --test windows/tests/*.test.mjs
262+
node --test tools/*.test.mjs
262263
node macos/scripts/injector.mjs --check-payload >/dev/null
263264
node windows/scripts/injector.mjs --check-payload >/dev/null
264265

0 commit comments

Comments
 (0)