From dc91c3ab8e3562770b00a48dbf2a32033c6b6b4b Mon Sep 17 00:00:00 2001 From: Pelle Wessman Date: Tue, 16 Jul 2024 16:56:24 +0200 Subject: [PATCH] Drop node versions older than >=18 Running `npx installed-check` tells us that `ava` and `xo` both need at least Node 18 --- .github/workflows/main.yml | 3 --- package.json | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3bc3837..6e98150 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,9 +13,6 @@ jobs: - 22 - 20 - 18 - - 16 - - 14 - - 12 steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 diff --git a/package.json b/package.json index dd26fb6..7a0e4d9 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "type": "module", "exports": "./index.js", "engines": { - "node": ">=12" + "node": ">=18" }, "scripts": { "test": "xo && ava && tsd",