Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ name: CI
on:
push:
branches: [main]

pull_request:
branches: [main]

jobs:
build:
name: Build, Lint, and Typecheck
name: Build, Lint, Test, and Coverage
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -40,5 +41,10 @@ jobs:
- name: Build
run: pnpm build

- name: Test
run: pnpm test
- name: Test with coverage
run: pnpm test -- --coverage

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: false