Skip to content

Commit

Permalink
add a wf to run on opened PR
Browse files Browse the repository at this point in the history
  • Loading branch information
drondiodev committed Sep 12, 2024
1 parent d6fe3ce commit 5fdc3d2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/coverage-on-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Run Coverage on PR
on: pull_request

jobs:
build-and-run-coverage:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install dependencies
run: pnpm i

- name: Build code
run: pnpm run build

- name: Run tests and coverage
run: pnpm run coverage

0 comments on commit 5fdc3d2

Please sign in to comment.