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 4fba132 commit 57ea7f0Copy full SHA for 57ea7f0
1 file changed
.github/workflows/jest.yml
@@ -24,13 +24,13 @@ jobs:
24
- name: Install yarn dependencies
25
run: yarn install
26
- name: Jest with code coverage
27
- if: matrix.node_version == 14 && matrix.os == 'ubuntu'
+ if: (matrix.node_version == 14 && matrix.os == 'ubuntu-latest')
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'
+ if: (matrix.node_version != 14 || matrix.os != 'ubuntu-latest')
36
run: yarn jest
0 commit comments