diff options
| author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-03-07 08:59:30 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-06 22:59:30 +0100 |
| commit | fed9dec92a281070521743c3b415dd653f80b3ae (patch) | |
| tree | abeb7e54daba63a60baabd55fc8641844bd6549d /.github/workflows/ci.yml | |
| parent | 7542d1050a61583d279bdd9c1cf05eaad71f4548 (diff) | |
fix: point to correct WPT runner file (#22753)
We were previously pointing to the incorrect runner file.
Diffstat (limited to '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a5f2ce64..dc365b773 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -519,11 +519,11 @@ jobs: deno run --allow-env --allow-net --allow-read --allow-run \ --allow-write --unstable \ --lock=tools/deno.lock.json \ - ./tests/wpt/runner/runner.ts setup + ./tests/wpt/wpt.ts setup deno run --allow-env --allow-net --allow-read --allow-run \ --allow-write --unstable \ --lock=tools/deno.lock.json \ - ./tests/wpt/runner/runner.ts run --quiet --binary="$DENO_BIN" + ./tests/wpt/wpt.ts run --quiet --binary="$DENO_BIN" - name: Run web platform tests (release) if: '!(matrix.skip) && (matrix.wpt && matrix.profile == ''release'')' env: @@ -532,11 +532,11 @@ jobs: deno run --allow-env --allow-net --allow-read --allow-run \ --allow-write --unstable \ --lock=tools/deno.lock.json \ - ./tests/wpt/runner/runner.ts setup + ./tests/wpt/wpt.ts setup deno run --allow-env --allow-net --allow-read --allow-run \ --allow-write --unstable \ --lock=tools/deno.lock.json \ - ./tests/wpt/runner/runner.ts run --quiet --release \ + ./tests/wpt/wpt.ts run --quiet --release \ --binary="$DENO_BIN" \ --json=wpt.json \ --wptreport=wptreport.json |
