Skip to content

Commit 25043b0

Browse files
authored
Allow manually running integration tests with workflow_dispatch (#702)
1 parent 6189d56 commit 25043b0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ concurrency:
1717

1818
jobs:
1919
integration:
20-
if: ${{ github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name && github.actor != 'dependabot[bot]' }}
20+
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name && github.actor != 'dependabot[bot]' }}
2121
strategy:
2222
fail-fast: false
2323
matrix:

.github/workflows/unit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run: 'npm run lint'
4444
# There's no need to run the linter for each operating system, since it
4545
# will find the same thing 3x and clog up the PR review.
46-
if: ${{matrix.os == 'ubuntu-latest'}}
46+
if: ${{ matrix.os == 'ubuntu-latest' }}
4747

4848
- name: 'test'
4949
run: 'npm test'

0 commit comments

Comments
 (0)