From 98f7613fff8d6845d01549683a0d1ef19b9b009a Mon Sep 17 00:00:00 2001 From: Mark Wubben Date: Sat, 10 Jul 2021 16:38:24 +0200 Subject: [PATCH] Match AVA 4 supported Node.js versions --- .github/workflows/ci.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d23c299c..4ad3aa90 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [^10.18.0, ^12.14.0, ^14] + node-version: [^12.22, ^14.17, ^16.4] steps: - uses: actions/checkout@v1 with: diff --git a/package.json b/package.json index 068220b8..13047a8d 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "license": "MIT", "repository": "avajs/eslint-plugin-ava", "engines": { - "node": ">=10.18.0 <11 || >=12.14.0 <13 || >=14" + "node": ">=12.22 <13 || >=14.17 <15 || >=16.4" }, "scripts": { "test": "xo && c8 ava",