Skip to content

Commit

Permalink
create coverage action
Browse files Browse the repository at this point in the history
  • Loading branch information
westin-m committed Oct 10, 2024
1 parent a63e6fd commit b2d5fcc
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/coverage-diff.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Coverage Diff

on:
push:
branches:
- master
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
branches:
- master

jobs:
test:
name: Coverage Diff
runs-on: windows-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
cache: npm
- run: npm install
- run: npm run test
- name: Coverage Diff
uses: greatwizard/coverage-diff-action@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b2d5fcc

Please sign in to comment.