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
11 changes: 10 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,16 @@ jobs:
run: pnpm run typecheck

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

- name: Upload coverage to Canyon
if: github.event_name == 'pull_request'
uses: canyon-project/canyon-action@v1.0.28
with:
coverage-file: coverage/coverage-final.json
canyon-url: https://app.canyonjs.io
instrument-cwd: ${{ github.workspace }}
only-changes: false

- name: Run Examples Test
run: pnpm run test:examples
Expand Down
Loading