Skip to content

Commit

Permalink
squashme - try if it works on linux at all
Browse files Browse the repository at this point in the history
  • Loading branch information
naugtur committed Jan 17, 2024
1 parent 95296f8 commit c97be74
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/lockdown-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand All @@ -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)"
4 changes: 2 additions & 2 deletions packages/ses/smoke-test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ async function runTests() {
browser = await puppeteer.launch({
headless: 'new',
executablePath: chromePath,
timeout: 600000,
protocolTimeout: 300000,
timeout: 60000,
protocolTimeout: 30000,
});


Expand Down

0 comments on commit c97be74

Please sign in to comment.