mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
chore: fail properly in web platform test (#22549)
Having `|| true` means that the job always executes with a success code, even when it really fails. Credit to Bartek for spotting this possible mistake. Towards #22257
This commit is contained in:
parent
e8b1925172
commit
f7b08cd962
1 changed files with 1 additions and 1 deletions
2
.github/workflows/wpt_epoch.yml
vendored
2
.github/workflows/wpt_epoch.yml
vendored
|
@ -72,7 +72,7 @@ jobs:
|
|||
deno run --unstable --allow-write --allow-read --allow-net \
|
||||
--allow-env --allow-run --lock=tools/deno.lock.json \
|
||||
./tools/wpt.ts run \
|
||||
--binary=$(which deno) --quiet --release --no-ignore --json=wpt.json --wptreport=wptreport.json || true
|
||||
--binary=$(which deno) --quiet --release --no-ignore --json=wpt.json --wptreport=wptreport.json
|
||||
|
||||
- name: Upload wpt results to wpt.fyi
|
||||
env:
|
||||
|
|
Loading…
Reference in a new issue