Skip to content

Commit d7d9833

Browse files
committed
feat: drop Node.js v14 support
BREAKING CHANGE: drop Node.js v14 support
1 parent c35e403 commit d7d9833

File tree

17 files changed

+17938
-11455
lines changed

17 files changed

+17938
-11455
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
node-version: [14, 16, 18, "latest"]
13+
node-version: [16, 18, "latest"]
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v3

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ After installing Argos, learn how to [review visual changes](https://argos-ci.co
9292
module.exports = {
9393
launch: {
9494
dumpio: true,
95-
headless: process.env.HEADLESS !== "false",
95+
headless: process.env.HEADLESS !== "false" ? "new" : false,
9696
},
9797
server: {
9898
command: "node server.js",
@@ -213,7 +213,7 @@ Default config values:
213213
module.exports = {
214214
launch: {
215215
dumpio: true,
216-
headless: process.env.HEADLESS !== "false",
216+
headless: process.env.HEADLESS !== "false" ? "new" : false,
217217
product: "chrome",
218218
},
219219
browserContext: "default",

jest-puppeteer.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ process.env.TEST_SERVER_PORT = port;
99
*/
1010
const jestPuppeteerConfig = {
1111
launch: {
12-
headless: true,
12+
headless: "new",
1313
},
1414
browserContext: process.env.INCOGNITO ? "incognito" : "default",
1515
server: {

0 commit comments

Comments
 (0)