Skip to content

Commit

Permalink
chore: Update test-build workflow
Browse files Browse the repository at this point in the history
- Removed separate "Run Tests" step and combined it with "Test Build" step
- Removed `deno test -A` command and only ran `deno task build`
  • Loading branch information
sidedwards committed Oct 27, 2024
1 parent 0b6057c commit 4bfe75c
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,8 @@ jobs:
with:
deno-version: "1.41.0"

- name: Run Tests
- name: Test Build
run: |
rm -f deno.lock
deno cache main.ts
deno test -A
- name: Test Build
run: deno task build
deno task build

0 comments on commit 4bfe75c

Please sign in to comment.