We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48df239 commit f20f28cCopy full SHA for f20f28c
1 file changed
.github/workflows/jest.yml
@@ -23,10 +23,14 @@ jobs:
23
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
24
- name: Install yarn dependencies
25
run: yarn install
26
- - name: Jest coverage
+ - name: Jest with code coverage
27
+ if: matrix.node_version == 14 && matrix.os == 'ubuntu'
28
uses: mattallty/jest-github-action@v1.0.3
29
with:
30
changes-only: true
31
test-command: 'yarn test:coverage'
32
env:
33
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34
+ - name: Jest
35
+ if: matrix.node_version != 14 && matrix.os != 'ubuntu'
36
+ run: yarn jest
0 commit comments