diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-07-25 17:20:44 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-25 09:20:44 +0200 |
commit | ef78d317f084ffe633253acd138a48a425113fa7 (patch) | |
tree | 2abce4b762b7cfccb193c3c5b1804ec889e824f1 /.github | |
parent | 5f44148e83bb0056b7a361dd6a1bf28d11f3116d (diff) |
chore: fix WPT epoch (#24716)
This was missed in the previous `std` updates.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/wpt_epoch.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/wpt_epoch.yml b/.github/workflows/wpt_epoch.yml index cfb06a318..166b51c6e 100644 --- a/.github/workflows/wpt_epoch.yml +++ b/.github/workflows/wpt_epoch.yml @@ -66,9 +66,9 @@ jobs: - name: Run web platform tests shell: bash run: | - deno run --unstable -A --lock=tools/deno.lock.json \ + deno run --unstable -A --lock=tools/deno.lock.json --config=tests/config/deno.json \ ./tests/wpt/wpt.ts setup - deno run --unstable -A --lock=tools/deno.lock.json \ + deno run --unstable -A --lock=tools/deno.lock.json --config=tests/config/deno.json \ ./tests/wpt/wpt.ts run \ \ --binary=$(which deno) --quiet --release --no-ignore --json=wpt.json --wptreport=wptreport.json --exit-zero |