Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
tomas-zijdemans-vipps committed Oct 1, 2024
1 parent 133821e commit cb05de3
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/deno.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,14 @@ jobs:
- name: Install Deno
run: curl -fsSL https://deno.land/install.sh | sh

- name: Add Deno to path
run: export deno=$deno:/home/runner/.deno/bin/deno

- name: Format check
run: deno fmt --check
run: /home/runner/.deno/bin/deno fmt --check

- name: Lint check
run: deno lint
run: /home/runner/.deno/bin/deno lint

- name: Run tests
run: deno test --allow-net --parallel --doc
run: /home/runner/.deno/bin/deno test --allow-net --parallel --doc

- name: Check coverage
run: deno run -A scripts/coverage.ts
run: /home/runner/.deno/bin/deno run -A scripts/coverage.ts

0 comments on commit cb05de3

Please sign in to comment.