summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.generate.ts
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-04-23 12:47:45 +1000
committerGitHub <noreply@github.com>2024-04-23 04:47:45 +0200
commit5236fd0dad3dd75ec1d650e74d36d4c6f1346e57 (patch)
tree1708ee4b70beae79de3d573d7c2482bee72ef056 /.github/workflows/ci.generate.ts
parentc67c87b2aee6eedbbd4fc1353a5415f42d5a1603 (diff)
fix: update CLI flags for WPT (#23501)
Fixes #23500
Diffstat (limited to '.github/workflows/ci.generate.ts')
-rwxr-xr-x.github/workflows/ci.generate.ts8
1 files changed, 2 insertions, 6 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts
index 755e3a135..37ca73145 100755
--- a/.github/workflows/ci.generate.ts
+++ b/.github/workflows/ci.generate.ts
@@ -862,13 +862,9 @@ const ci = {
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"',
].join("\n"),
},