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/wpt_epoch.yml | |
| parent | c67c87b2aee6eedbbd4fc1353a5415f42d5a1603 (diff) | |
fix: update CLI flags for WPT (#23501)
Fixes #23500
Diffstat (limited to '.github/workflows/wpt_epoch.yml')
| -rw-r--r-- | .github/workflows/wpt_epoch.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.github/workflows/wpt_epoch.yml b/.github/workflows/wpt_epoch.yml index 3155ae42f..4dbb8a997 100644 --- a/.github/workflows/wpt_epoch.yml +++ b/.github/workflows/wpt_epoch.yml @@ -66,12 +66,10 @@ jobs: - name: Run web platform tests shell: bash run: | - deno run --unstable --allow-write --allow-read --allow-net \ - --allow-env --allow-run --lock=tools/deno.lock.json \ + deno run --unstable -A --lock=tools/deno.lock.json \ ./tests/wpt/wpt.ts setup - deno run --unstable --allow-write --allow-read --allow-net \ - --allow-env --allow-run --lock=tools/deno.lock.json \ - ./tests/wpt/wpt.ts run \ \ + deno run --unstable -A --lock=tools/deno.lock.json \ + ./tests/wpt/wpt.ts run \ \ --binary=$(which deno) --quiet --release --no-ignore --json=wpt.json --wptreport=wptreport.json --exit-zero - name: Upload wpt results to wpt.fyi |
