Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
4 changes: 1 addition & 3 deletions .github/workflows/qunit_tests-renovation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,7 @@ jobs:
DOTNET_CLI_TELEMETRY_OPTOUT: "true"
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: "true"
BUILD_INPROGRESS_RENOVATION: "true"
run: |
node ../../tools/scripts/performance_log.js &
pnpx nx build:dev
run: pnpx nx build:dev

- name: Zip artifacts
working-directory: ./packages/devextreme
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/testcafe_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,6 @@ jobs:
[ "${{ matrix.ARGS.platform }}" != "" ] && PLATFORM="--platform ${{ matrix.ARGS.platform }}"
all_args="--browsers=chrome:devextreme-shr2 --componentFolder ${{ matrix.ARGS.componentFolder }} $CONCURRENCY $INDICES $PLATFORM $THEME"
echo "$all_args"
node ../../tools/scripts/performance_log.js &
pnpm run test $all_args

- name: Sanitize job name
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/wrapper_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,17 @@ jobs:
fi

test:
runs-on: devextreme-shr2
timeout-minutes: 20
needs: build
strategy:
fail-fast: false
matrix:
framework: [angular, react, vue]
framework: [react, vue]
runner: [devextreme-shr2]
include:
- runner: ubuntu-latest
framework: angular
runs-on: ${{ matrix.runner }}

steps:
- name: Get sources
Expand Down
Loading