From 20390445c317d27aff787f6b451881d5d4f8d0ec Mon Sep 17 00:00:00 2001 From: Jared Galanis Date: Fri, 1 Dec 2023 10:03:50 -0500 Subject: [PATCH] fix: pin test cafe to 3.3.0 - we've had some problems getting acceptance tests to pass in the release workflow since test cafe 3.4.0 was released 3 weeks ago - the last release used version 3.3.0 and was successful - so this pins to that version --- .github/actions/acceptance-test/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/acceptance-test/action.yml b/.github/actions/acceptance-test/action.yml index b67e1a1b..ab756bfd 100644 --- a/.github/actions/acceptance-test/action.yml +++ b/.github/actions/acceptance-test/action.yml @@ -33,6 +33,7 @@ runs: - name: Run acceptance tests uses: DevExpress/testcafe-action@latest with: + version: "3.3.0" args: "'chrome --ignore-certificate-errors --allow-insecure-localhost' --hostname localhost ./pass-acceptance-testing/tests/*Tests.js --selector-timeout ${{ inputs.timeouts}} --assertion-timeout ${{ inputs.timeouts}} --ajax-request-timeout ${{ inputs.timeouts}}" - name: Stop pass-docker