From ef489ba355ab66daf1559770984e8f1b362f01fd Mon Sep 17 00:00:00 2001 From: Tobias Bieniek Date: Fri, 2 Jul 2021 13:00:24 +0200 Subject: [PATCH] Drop support for Node.js 10 --- .github/workflows/ci.yml | 6 +++--- .github/workflows/release.yml | 2 +- package.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 93fdd212..f289f575 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: 12.x + node-version: 14.x - name: get yarn cache dir id: yarn-cache @@ -44,7 +44,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - node-version: [10.x, 12.x] + node-version: [12.x, 14.x, 16.x] steps: - uses: actions/checkout@v2 @@ -84,7 +84,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: 12.x + node-version: 14.x - name: get yarn cache dir id: yarn-cache diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8546c908..ad1dfa5d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: 12.x + node-version: 14.x registry-url: 'https://registry.npmjs.org' - run: npm publish diff --git a/package.json b/package.json index 6aef0492..ffa731a6 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,7 @@ "release-it-lerna-changelog": "3.1.0" }, "engines": { - "node": "10.* || >= 12.*" + "node": "12.* || 14.* || >= 16.*" }, "changelog": { "repo": "simplabs/ember-test-selectors",