From b6bfa867b83fb70d147e2e3212975092a6706f9e Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Tue, 5 Mar 2024 08:28:48 +1100 Subject: [PATCH] chore: more CI changes --- .github/workflows/ci.yml | 7 ++----- deno.json | 8 ++++---- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0343ace..0553bd6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,15 +20,12 @@ jobs: - name: check linting run: deno lint - - name: run tests - run: deno task test + - name: run tests generating coverage + run: deno task test:coverage - name: run tests no check run: deno task test:no-check - - name: run tests unstable - run: deno task test:unstable - - name: test build for Node.js run: deno task build diff --git a/deno.json b/deno.json index 8c2377a..ef8e393 100644 --- a/deno.json +++ b/deno.json @@ -18,11 +18,11 @@ }, "tasks": { "build": "deno run --allow-read --allow-write --allow-net --allow-env --allow-run _build_npm.ts", - "coverage": "deno coverage --unstable --lcov ./cov", - "example": "deno run --unstable --allow-net examples/echoServer.ts", - "test": "deno test --allow-read --allow-write --allow-net --parallel --ignore=npm,http_server_native_unstable_test.ts", + "coverage": "deno coverage --lcov ./cov", + "example": "deno run --allow-net examples/echoServer.ts", + "test": "deno test --allow-read --allow-write --allow-net --parallel --ignore=npm", "test:no-check": "deno test --allow-read --allow-write --allow-net --no-check --parallel --ignore=npm,http_server_native_unstable_test.ts", - "test:unstable": "deno test --coverage=./cov --allow-read --allow-write --allow-net --unstable --cert ./examples/tls/RootCA.crt --parallel --ignore=npm" + "test:coverage": "deno test --coverage=./cov --allow-read --allow-write --allow-net --cert ./examples/tls/RootCA.crt --parallel --ignore=npm" }, "fmt": { "exclude": ["README.md"]