Remove more --unstable

This commit is contained in:
Andrew Morris
2023-02-10 10:15:48 +11:00
parent f4e1c9b250
commit 76ea1cabcd
5 changed files with 3 additions and 5 deletions

View File

@@ -75,4 +75,4 @@ jobs:
run: ./scripts/wait-for-rpc.sh
- run: cp .env.local.example .env
- run: deno test --allow-net --allow-env --allow-read --unstable
- run: deno test --allow-net --allow-env --allow-read

View File

@@ -13,7 +13,6 @@
"runtimeExecutable": "deno",
"runtimeArgs": [
"run",
"--unstable",
"--inspect",
"--allow-all"
],

View File

@@ -16,7 +16,7 @@ export async function checkTs(): Promise<void> {
tsFiles.map((f) => `import "${repoDir}/${f}";`).join("\n"),
);
await shell.run("deno", "check", "--unstable", testFilePath);
await shell.run("deno", "check", testFilePath);
} finally {
if (testFilePath !== nil) {
await Deno.remove(testFilePath);

View File

@@ -42,7 +42,6 @@ function Checks(): Check[] {
"--allow-net",
"--allow-env",
"--allow-read",
"--unstable",
"--",
"--env",
envName,

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env -S deno run --unstable --allow-run --allow-read --allow-write
#!/usr/bin/env -S deno run --allow-run --allow-read --allow-write
import { exists } from "https://deno.land/std@0.103.0/fs/mod.ts";
import * as shell from "./aggregator/programs/helpers/shell.ts";