Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/demos_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:
jobs:
check-should-run:
name: Check if tests should run
runs-on: devextreme-shr2
runs-on: ubuntu-latest
outputs:
should-run: ${{ steps.check.outputs.should-run }}
steps:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/demos_visual_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:
jobs:
check-should-run:
name: Check if tests should run
runs-on: devextreme-shr2
runs-on: ubuntu-latest
outputs:
should-run: ${{ steps.check.outputs.should-run }}
steps:
Expand All @@ -29,7 +29,7 @@ jobs:
run: echo "should-run=${{ env.RUN_TESTS }}" >> $GITHUB_OUTPUT

get-changes:
runs-on: devextreme-shr2
runs-on: ubuntu-latest
needs: check-should-run
if: github.event_name == 'pull_request' && needs.check-should-run.outputs.should-run == 'true'
name: Get changed demos
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
retention-days: 1

determine-framework-tests-scope:
runs-on: devextreme-shr2
runs-on: ubuntu-latest
name: Determine scope for framework tests
needs: [check-should-run, get-changes]
if: |
Expand Down Expand Up @@ -1051,7 +1051,7 @@ jobs:
if-no-files-found: ignore

merge-artifacts:
runs-on: devextreme-shr2
runs-on: ubuntu-latest
needs: [testcafe-jquery, testcafe-frameworks-all, testcafe-frameworks-changed]
if: always() && (needs.testcafe-jquery.result == 'failure' || needs.testcafe-frameworks-all.result == 'failure' || needs.testcafe-frameworks-changed.result == 'failure')

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/qunit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
jobs:
check-should-run-all:
name: Check if all tests should run
runs-on: devextreme-shr2
runs-on: ubuntu-latest
outputs:
should-run: ${{ steps.check.outputs.should-run }}
steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/testcafe_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:
jobs:
check-should-run:
name: Check if tests should run
runs-on: devextreme-shr2
runs-on: ubuntu-latest
outputs:
should-run: ${{ steps.check.outputs.should-run }}
steps:
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
if-no-files-found: ignore

merge-artifacts:
runs-on: devextreme-shr2
runs-on: ubuntu-latest
needs: testcafe
if: ${{ always() }}

Expand All @@ -236,7 +236,7 @@ jobs:
delete-merged: true

notify:
runs-on: devextreme-shr2
runs-on: ubuntu-latest
name: Send notifications
needs: [build, testcafe]
if: github.event_name != 'pull_request' && contains(needs.*.result, 'failure')
Expand Down
Loading