Skip to content

Commit

Permalink
chore: more CI changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Mar 4, 2024
1 parent 7a000b1 commit b6bfa86
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 4 additions & 4 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit b6bfa86

Please sign in to comment.