Skip to content

Commit

Permalink
Update puppeteer in tests/examples
Browse files Browse the repository at this point in the history
  • Loading branch information
FiloSottile committed Jan 10, 2025
1 parent 6fb6792 commit 71f68da
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
- run: npm run lint
- run: npm run test
- run: npm run examples:node
- run: echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns
- run: npm run examples:esbuild
bun:
runs-on: ubuntu-latest
Expand Down
7 changes: 4 additions & 3 deletions tests/examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@
"test:node": "node identity.js && node passphrase.js",
"test:bun": "bun run identity.js && bun run passphrase.js",
"build:esbuild": "esbuild --target=es6 --bundle --minify --outfile=age.js --global-name=age age-encryption",
"test:esbuild": "npm run build:esbuild && node browser.js"
"install:esbuild": "npx puppeteer browsers install chrome",
"test:esbuild": "npm run build:esbuild && npm run install:esbuild && node browser.js"
},
"devDependencies": {
"esbuild": "*",
"express": "4.18.2",
"puppeteer": "21.5.0"
"express": "4.21.2",
"puppeteer": "24.0.0"
}
}

0 comments on commit 71f68da

Please sign in to comment.