Skip to content

Commit

Permalink
Create jest-coverage.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
beezen authored Jan 3, 2024
1 parent c00bdc8 commit 2e163f5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/jest-coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: jest-coverage
run-name: ${{ github.actor }}
on: ["push", "pull_request"]

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1

- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x

- name: npm install, make jest-coverage
run: |
npm install
npm run test:coverage
- name: Coveralls
uses: coverallsapp/github-action@v2

0 comments on commit 2e163f5

Please sign in to comment.