From 9c87e6bd663e835edbe4240c5880debc1075ec8d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 12 May 2026 15:29:27 +0000 Subject: [PATCH 1/3] Initial plan From 6da661d221a2579668052484baa6c3034573af33 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 12 May 2026 15:32:18 +0000 Subject: [PATCH 2/3] fix(ci): pass npm package artifact from build to test job Agent-Logs-Url: https://github.com/DevExpress/testcafe-browser-provider-browserstack/sessions/412572b9-fd6f-45a5-9044-ed205d6fd518 Co-authored-by: aleks-pro <14822473+aleks-pro@users.noreply.github.com> --- .github/workflows/test.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d306cdf..e217cc8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,6 +14,11 @@ jobs: - uses: DevExpress/testcafe-build-system/actions/prepare@main - uses: DevExpress/testcafe-build-system/actions/build@main + + - uses: actions/upload-artifact@v4 + with: + name: npm-package + path: .builds/*.tgz test: @@ -21,6 +26,11 @@ jobs: needs: [build] steps: - uses: DevExpress/testcafe-build-system/actions/prepare@main + + - uses: actions/download-artifact@v4 + with: + name: npm-package + path: .builds - uses: DevExpress/testcafe-build-system/actions/test-npm@main env: From e915dfebd60b2a334c3edde1b4eff2e3455a7af9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 12 May 2026 15:35:42 +0000 Subject: [PATCH 3/3] fix(ci): pin artifact actions to patched versions Agent-Logs-Url: https://github.com/DevExpress/testcafe-browser-provider-browserstack/sessions/412572b9-fd6f-45a5-9044-ed205d6fd518 Co-authored-by: aleks-pro <14822473+aleks-pro@users.noreply.github.com> --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e217cc8..c2e44e4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,7 @@ jobs: - uses: DevExpress/testcafe-build-system/actions/build@main - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v4.6.2 with: name: npm-package path: .builds/*.tgz @@ -27,7 +27,7 @@ jobs: steps: - uses: DevExpress/testcafe-build-system/actions/prepare@main - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v4.1.3 with: name: npm-package path: .builds