Skip to content

Commit

Permalink
ci: run github actions on pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrsn committed Dec 4, 2024
1 parent 911739b commit ed9c789
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 6 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/oidc-e2e.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
name: OIDC e2e tests

on: push
on:
push:
pull_request:

env:
DEBUG: pw:api
ODK_PLAYWRIGHT_BROWSERS: chromium,firefox,webkit

jobs:
oidc-e2e-test:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
timeout-minutes: 6
# TODO should we use the same container as circle & central?
runs-on: ubuntu-latest
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/oidc-integration.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
name: OIDC integration tests

on: push
on:
push:
pull_request:

jobs:
oidc-integration-test:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
timeout-minutes: 6
# TODO should we use the same container as circle & central?
runs-on: ubuntu-latest
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/s3-e2e.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
name: S3 E2E Tests

on: push
on:
push:
pull_request:

jobs:
s3-e2e:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
timeout-minutes: 15
# TODO should we use the same container as circle & central?
runs-on: ubuntu-latest
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/soak-test.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
name: Soak Test

on: push
on:
push:
pull_request:

jobs:
soak-test:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
timeout-minutes: 15
# TODO should we use the same container as circle & central?
runs-on: ubuntu-latest
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/standard-e2e.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
name: Standard E2E Tests

on: push
on:
push:
pull_request:

env:
LOG_LEVEL: DEBUG

jobs:
standard-e2e:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
timeout-minutes: 15
# TODO should we use the same container as circle & central?
runs-on: ubuntu-latest
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/standard-suite.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
name: Full Standard Test Suite

on: push
on:
push:
pull_request:

jobs:
standard-tests:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
timeout-minutes: 20
# TODO should we use the same container as circle & central?
runs-on: ubuntu-latest
Expand Down

0 comments on commit ed9c789

Please sign in to comment.