diff --git a/.github/actions/acceptance-test/action.yml b/.github/actions/acceptance-test/action.yml index 918d95d..a9b1e67 100644 --- a/.github/actions/acceptance-test/action.yml +++ b/.github/actions/acceptance-test/action.yml @@ -40,7 +40,7 @@ runs: run: | yarn install --frozen-lockfile npx testcafe \ - 'chrome:headless --ignore-certificate-errors --allow-insecure-localhost --disable-features=LocalNetworkAccessChecks' \ + 'chrome:headless --ignore-certificate-errors --allow-insecure-localhost' \ --hostname localhost \ --base-url http://localhost:8080 \ tests/*Tests.js \ diff --git a/.github/workflows/pass-acceptance-tests.yml b/.github/workflows/pass-acceptance-tests.yml index f936a91..f3efa5f 100644 --- a/.github/workflows/pass-acceptance-tests.yml +++ b/.github/workflows/pass-acceptance-tests.yml @@ -18,6 +18,12 @@ jobs: - name: Checkout pass-docker uses: actions/checkout@v3 + - name: Use Node.js 24 + uses: actions/setup-node@v5 + with: + node-version: '24' + cache: 'yarn' + - name: Run acceptance tests uses: ./.github/actions/acceptance-test with: