From 01949b21c6ca0c0ec61536a8e515530e14fe53e8 Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Mon, 30 Aug 2021 19:13:54 +0200 Subject: [PATCH] Drop support for Node.js 10 --- .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 409ed56bb..7229a6942 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: test: strategy: matrix: - node: ['10', '12', '14', '16'] + node: ['12', '14', '16'] name: Tests (Node.js v${{ matrix.node }}) runs-on: ubuntu-latest diff --git a/package.json b/package.json index 452624e01..2ca5e566d 100644 --- a/package.json +++ b/package.json @@ -84,7 +84,7 @@ "typescript": "4.4.2" }, "engines": { - "node": "10.* || >= 12.*" + "node": "12.* || 14.* || >= 16.*" }, "changelog": { "repo": "simplabs/qunit-dom",