From 2586fdaf531cef46b9995d9a69621e2a04bfbb39 Mon Sep 17 00:00:00 2001 From: Robbie Wagner Date: Sun, 7 Jan 2024 22:38:35 -0500 Subject: [PATCH] Drop support for node < 16 (#456) --- .github/workflows/ci.yml | 6 +++--- package.json | 6 +----- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9913728..80a94cb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - name: Install Node uses: actions/setup-node@v3 with: - node-version: 14.x + node-version: 16.x cache: yarn - name: Install Dependencies run: yarn install --frozen-lockfile @@ -40,7 +40,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 14.x + node-version: 16.x cache: yarn - name: Install Dependencies run: yarn install --no-lockfile @@ -71,7 +71,7 @@ jobs: - name: Install Node uses: actions/setup-node@v3 with: - node-version: 14.x + node-version: 16.x cache: yarn - name: Install Dependencies run: yarn install --frozen-lockfile diff --git a/package.json b/package.json index 9a4fa89..094f82e 100644 --- a/package.json +++ b/package.json @@ -82,7 +82,7 @@ "ember-simple-auth": "^4.0.0 || ^5.0.0 || >= 6.0.0" }, "engines": { - "node": "14.* || 16.* || >= 18" + "node": "16.* || >= 18" }, "publishConfig": { "registry": "https://registry.npmjs.org" @@ -110,9 +110,5 @@ "git": { "tagName": "v${version}" } - }, - "volta": { - "node": "18.19.0", - "yarn": "1.22.21" } }