mirror of
https://github.com/google-github-actions/setup-gcloud.git
synced 2026-08-21 00:19:25 +00:00
Allow manually running integration tests with workflow_dispatch
This commit is contained in:
parent
6189d56e40
commit
39cfd3b04a
2 changed files with 2 additions and 2 deletions
2
.github/workflows/integration.yml
vendored
2
.github/workflows/integration.yml
vendored
|
|
@ -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:
|
||||
|
|
|
|||
2
.github/workflows/unit.yml
vendored
2
.github/workflows/unit.yml
vendored
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue