From c97be742a7e92f00eb791c1db42805d274239422 Mon Sep 17 00:00:00 2001 From: naugtur Date: Wed, 17 Jan 2024 14:24:21 +0100 Subject: [PATCH] squashme - try if it works on linux at all --- .github/workflows/lockdown-canary.yml | 9 ++++++--- packages/ses/smoke-test/index.js | 4 ++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lockdown-canary.yml b/.github/workflows/lockdown-canary.yml index 04d29fab93..75099d933d 100644 --- a/.github/workflows/lockdown-canary.yml +++ b/.github/workflows/lockdown-canary.yml @@ -10,7 +10,10 @@ on: jobs: test: - runs-on: macos-latest ## chrome-canary is not supported on linux o_O + runs-on: ubuntu-latest + # runs-on: macos-latest + ## chrome-canary is not supported on linux o_O + ## but canary on mac won't connect steps: - name: Checkout @@ -23,7 +26,7 @@ jobs: uses: browser-actions/setup-chrome@latest ## location is OS dependent with: - chrome-version: 'canary' + chrome-version: 'beta' - name: install dependencies run: | @@ -32,5 +35,5 @@ jobs: - name: Run tests run: | - echo "$(which chrome)" "$(which google-chrome-unstable)" "$(which google-chrome)" + echo "$(which chrome)" "$(which google-chrome-unstable)" "$(which google-chrome)" "$(which google-chrome-beta)" node ./packages/ses/smoke-test/index.js "$(which chrome)" \ No newline at end of file diff --git a/packages/ses/smoke-test/index.js b/packages/ses/smoke-test/index.js index b013bdc492..8123b891c6 100644 --- a/packages/ses/smoke-test/index.js +++ b/packages/ses/smoke-test/index.js @@ -14,8 +14,8 @@ async function runTests() { browser = await puppeteer.launch({ headless: 'new', executablePath: chromePath, - timeout: 600000, - protocolTimeout: 300000, + timeout: 60000, + protocolTimeout: 30000, });