Skip to content

Commit

Permalink
Split up steps
Browse files Browse the repository at this point in the history
  • Loading branch information
qqilihq committed Mar 11, 2024
1 parent f36993c commit 401052a
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/main.yml
Expand Up @@ -14,12 +14,16 @@ jobs:
with:
deno-version: v1.40

- name: Lint, test, and build
- name: Lint
run: deno task lint

- name: Test
run: |
deno task lint
deno task test --coverage=coverage
deno coverage ./coverage --lcov > ./coverage.lcov
deno task build
- name: Build
run: deno task build

- uses: codecov/codecov-action@v3
with:
Expand Down

0 comments on commit 401052a

Please sign in to comment.