Skip to content

Commit 804eede

Browse files
committed
ci(action): add jest coverage action
1 parent 356941a commit 804eede

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/jest.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: CI
2+
on: [ push, pull_request ]
3+
jobs:
4+
jest:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Jest Coverage
8+
uses: mattallty/jest-github-action@v1
9+
continue-on-error: true
10+
with:
11+
changes-only: true
12+
test-command: 'yarn test:coverage'
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)