Skip to content

Commit

Permalink
Merge branch 'main' into event-availability-platform-wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
ThyMinimalDev authored Oct 15, 2024
2 parents b99e158 + e2a825a commit dbdc75b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 15 deletions.
20 changes: 5 additions & 15 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,6 @@ jobs:
if: ${{ needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
uses: ./.github/workflows/yarn-install.yml

install-playwright:
name: Install playwright
runs-on: buildjet-2vcpu-ubuntu-2204
needs: [changes, check-label, deps]
if: ${{ needs.check-label.outputs.run-e2e == 'true' && needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/dangerous-git-checkout
- uses: ./.github/actions/yarn-playwright-install

type-check:
name: Type check
needs: [changes, check-label, deps]
Expand Down Expand Up @@ -172,35 +162,35 @@ jobs:

e2e:
name: Tests
needs: [changes, check-label, build, build-api-v1, build-api-v2, install-playwright]
needs: [changes, check-label, build, build-api-v1, build-api-v2]
if: ${{ needs.check-label.outputs.run-e2e == 'true' && needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
uses: ./.github/workflows/e2e.yml
secrets: inherit

e2e-api-v2:
name: Tests
needs: [changes, check-label, build, build-api-v1, build-api-v2, install-playwright]
needs: [changes, check-label, build, build-api-v1, build-api-v2]
if: ${{ needs.check-label.outputs.run-e2e == 'true' && needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
uses: ./.github/workflows/e2e-api-v2.yml
secrets: inherit

e2e-app-store:
name: Tests
needs: [changes, check-label, build, build-api-v1, build-api-v2, install-playwright]
needs: [changes, check-label, build, build-api-v1, build-api-v2]
if: ${{ needs.check-label.outputs.run-e2e == 'true' && needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
uses: ./.github/workflows/e2e-app-store.yml
secrets: inherit

e2e-embed:
name: Tests
needs: [changes, check-label, build, build-api-v1, build-api-v2, install-playwright]
needs: [changes, check-label, build, build-api-v1, build-api-v2]
if: ${{ needs.check-label.outputs.run-e2e == 'true' && needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
uses: ./.github/workflows/e2e-embed.yml
secrets: inherit

e2e-embed-react:
name: Tests
needs: [changes, check-label, build, build-api-v1, build-api-v2, install-playwright]
needs: [changes, check-label, build, build-api-v1, build-api-v2]
if: ${{ needs.check-label.outputs.run-e2e == 'true' && needs.changes.outputs.has-files-requiring-all-checks == 'true' }}
uses: ./.github/workflows/e2e-embed-react.yml
secrets: inherit
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/yarn-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/dangerous-git-checkout
- uses: ./.github/actions/yarn-install
- uses: ./.github/actions/yarn-playwright-install

0 comments on commit dbdc75b

Please sign in to comment.