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 004d746 commit e7ae16bCopy full SHA for e7ae16b
.github/workflows/test.yml
@@ -50,7 +50,7 @@ jobs:
50
51
package:
52
needs: [changes, lint]
53
- if: ${{ needs.changes.outputs.has-changes == 'true' }}
+ if: ${{ github.event_name == 'push' || needs.changes.outputs.has-changes == 'true' }}
54
runs-on: ubuntu-latest
55
steps:
56
- name: Check out
@@ -62,7 +62,7 @@ jobs:
62
63
test:
64
needs: [package]
65
66
runs-on: ${{ matrix.os }}
67
strategy:
68
fail-fast: false
0 commit comments