Skip to content

Commit

Permalink
Drop NodeJS v14 support (#441)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinigami92 committed May 2, 2023
1 parent 88421e4 commit 192812c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 24 deletions.
24 changes: 2 additions & 22 deletions .github/workflows/ci.yml
Expand Up @@ -11,17 +11,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node_version: [14, 16, 18]
include:
- os: macos-latest
node_version: 16
- os: macos-latest
node_version: 18
- os: windows-latest
node_version: 16
- os: windows-latest
node_version: 18
os: [ubuntu-latest, macos-latest, windows-latest]
node_version: [16, 18, 20]
fail-fast: false

name: 'Build&Test: node-${{ matrix.node_version }}, ${{ matrix.os }}'
Expand All @@ -35,14 +26,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Install pnpm (node 14, pnpm 7)
if: matrix.node_version == 14
uses: pnpm/action-setup@v2
with:
version: 7

- name: Install pnpm
if: matrix.node_version != 14
uses: pnpm/action-setup@v2

- name: Set node version to ${{ matrix.node_version }}
Expand Down Expand Up @@ -79,8 +63,6 @@ jobs:

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 7

- name: Set node version to 18
uses: actions/setup-node@v3
Expand Down Expand Up @@ -108,8 +90,6 @@ jobs:

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 7

- name: Set node version to 18
uses: actions/setup-node@v3
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -84,8 +84,8 @@
},
"packageManager": "pnpm@8.2.0",
"engines": {
"node": "^14.17.0 || ^16.13.0 || >=18.0.0",
"npm": ">=6.14.13"
"node": "^16.13.0 || >=18.0.0",
"npm": ">=7.10.0"
},
"pnpm": {
"peerDependencyRules": {
Expand Down

0 comments on commit 192812c

Please sign in to comment.