Skip to content

Commit

Permalink
chore: macos-14 for m1
Browse files Browse the repository at this point in the history
  • Loading branch information
abernier committed Apr 4, 2024
1 parent 07c9fee commit 773ca39
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:

jobs:
main:
runs-on: macos-13
runs-on: macos-14
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.14.0
20.11.0
6 changes: 5 additions & 1 deletion test/e2e/snapshot.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ describe('snapshot', () => {
let page
beforeAll(async () => {
await waitForServer()
browser = await puppeteer.launch({ headless: 'new' })
browser = await puppeteer.launch({
headless: 'new',
executablePath: process.env.CHROMEWEBDRIVER,
args: ['--no-sandbox', '--disable-setuid-sandbox', '--disable-dev-shm-usage'],
})
page = await browser.newPage()
}, 30000)

Expand Down

0 comments on commit 773ca39

Please sign in to comment.