diff options
| author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-03-05 11:41:16 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-05 00:41:16 +0000 |
| commit | 0022c35a237773b50a771b0fef48cac734f7a9d6 (patch) | |
| tree | a7a2f9472d432c6ae9b329e6a62a9dbe0f69de75 /.github/workflows/ci.yml | |
| parent | c559e813e172bc67225391d3c5cb5d85c14c6279 (diff) | |
chore: move `tools/wpt` to `tests/wpt/runner` (#22545)
Towards #22525
---------
Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com>
Co-authored-by: Matt Mastracci <matthew@mastracci.com>
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 b36195beb..7a5f2ce64 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 \ - ./tools/wpt.ts setup + ./tests/wpt/runner/runner.ts setup deno run --allow-env --allow-net --allow-read --allow-run \ --allow-write --unstable \ --lock=tools/deno.lock.json \ - ./tools/wpt.ts run --quiet --binary="$DENO_BIN" + ./tests/wpt/runner/runner.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 \ - ./tools/wpt.ts setup + ./tests/wpt/runner/runner.ts setup deno run --allow-env --allow-net --allow-read --allow-run \ --allow-write --unstable \ --lock=tools/deno.lock.json \ - ./tools/wpt.ts run --quiet --release \ + ./tests/wpt/runner/runner.ts run --quiet --release \ --binary="$DENO_BIN" \ --json=wpt.json \ --wptreport=wptreport.json |
