Allow manually running integration tests with workflow_dispatch

This commit is contained in:
Seth Vargo 2025-01-28 12:10:40 -05:00
parent 6189d56e40
commit 39cfd3b04a
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -17,7 +17,7 @@ concurrency:
jobs:
integration:
if: ${{ github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name && github.actor != 'dependabot[bot]' }}
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'push' || github.repository == github.event.pull_request.head.repo.full_name && github.actor != 'dependabot[bot]' }}
strategy:
fail-fast: false
matrix:

View file

@ -43,7 +43,7 @@ jobs:
run: 'npm run lint'
# There's no need to run the linter for each operating system, since it
# will find the same thing 3x and clog up the PR review.
if: ${{matrix.os == 'ubuntu-latest'}}
if: ${{ matrix.os == 'ubuntu-latest' }}
- name: 'test'
run: 'npm test'