diff options
| author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-04-23 12:47:45 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-23 04:47:45 +0200 |
| commit | 5236fd0dad3dd75ec1d650e74d36d4c6f1346e57 (patch) | |
| tree | 1708ee4b70beae79de3d573d7c2482bee72ef056 /.github/workflows/ci.yml | |
| parent | c67c87b2aee6eedbbd4fc1353a5415f42d5a1603 (diff) | |
fix: update CLI flags for WPT (#23501)
Fixes #23500
Diffstat (limited to '.github/workflows/ci.yml')
| -rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 25603027f..7b061adf3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -526,13 +526,9 @@ jobs: env: DENO_BIN: ./target/debug/deno run: |- - deno run --allow-env --allow-net --allow-read --allow-run \ - --allow-write --unstable \ - --lock=tools/deno.lock.json \ + deno run -A --unstable --lock=tools/deno.lock.json \ ./tests/wpt/wpt.ts setup - deno run --allow-env --allow-net --allow-read --allow-run \ - --allow-write --unstable \ - --lock=tools/deno.lock.json \ + deno run -A --unstable --lock=tools/deno.lock.json \ ./tests/wpt/wpt.ts run --quiet --binary="$DENO_BIN" - name: Run web platform tests (release) if: '!(matrix.skip) && (matrix.wpt && matrix.profile == ''release'')' |
