Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci): revert wdio workflow call changes #5973

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,3 @@ jobs:
name: Unit Tests
needs: [build_core]
uses: ./.github/workflows/test-unit.yml

wdio_tests:
name: WebdriverIO Tests
needs: [build_core]
uses: ./.github/workflows/test-wdio.yml
16 changes: 10 additions & 6 deletions .github/workflows/test-wdio.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
name: WebdriverIO Tests

on:
workflow_call:
# Make this a reusable workflow, no value needed
# https://docs.github.com/en/actions/using-workflows/reusing-workflows
merge_group:
pull_request:
push:
branches:
- 'main'

jobs:
build_core:
name: Build
uses: ./.github/workflows/build.yml

run_wdio:
name: Run WebdriverIO Component Tests (${{ matrix.browser }})
runs-on: ubuntu-22.04
needs: [build_core]
strategy:
matrix:
browser: [CHROME, FIREFOX, EDGE]
Expand All @@ -17,9 +24,6 @@ jobs:
- name: Checkout Code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- name: Get Core Dependencies
uses: ./.github/workflows/actions/get-core-dependencies

- name: Use Node Version from Volta
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
Expand Down