-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BREAKING] Require Node.js >= 20.11.0 (#360)
BREAKING CHANGE: Support for older Node.js and npm releases has been dropped. Only Node.js v20.11.0 and npm v8 or higher are supported.
- Loading branch information
Showing
3 changed files
with
540 additions
and
170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,10 +14,10 @@ jobs: | |
|
||
- uses: actions/[email protected] | ||
|
||
- name: Use Node.js LTS 16.18.0 | ||
- name: Use Node.js LTS 20.11.0 | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 16.18.0 | ||
node-version: 20.11.0 | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
|
@@ -35,13 +35,8 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
node-version: [20] | ||
node-version: [20, 22] | ||
os: [ubuntu-latest, windows-latest, macOS-latest] | ||
include: | ||
- node-version: 16 | ||
os: ubuntu-latest | ||
- node-version: 18 | ||
os: ubuntu-latest | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
|
||
|
Oops, something went wrong.