Skip to content

Commit

Permalink
Merge pull request #75 from jmatsu/jmatsu/ci/run_integration_test_on_pr
Browse files Browse the repository at this point in the history
Run integration tests on pull requests
  • Loading branch information
jmatsu authored Feb 4, 2024
2 parents 4059cae + 15dc2ef commit 03256e7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
workflow_dispatch:
inputs:

pull_request:

push:
branches:
- main
Expand All @@ -13,6 +15,9 @@ env:

jobs:
deploygate:
if: >
github.event_name != 'pull_request' ||
contains(fromJSON('["jmatsu", "dependabot[bot]"]'), github.actor)
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
Expand All @@ -28,6 +33,9 @@ jobs:
--api-token "${{ secrets.DEPLOYGATE_API_TOKEN }}"
firebase-app-distribution:
if: >
github.event_name != 'pull_request' ||
contains(fromJSON('["jmatsu", "dependabot[bot]"]'), github.actor)
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 03256e7

Please sign in to comment.