Skip to content

Commit

Permalink
chore: drop Node.js 16 (#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
D-Sketon authored Jan 11, 2025
1 parent ca7f851 commit 60d9587
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16
- name: Use Node.js 22
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 22
- name: Cache NPM dependencies
uses: actions/cache@v3
with:
Expand All @@ -30,7 +30,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [14, 16, 18]
node-version: [18, 20, 22]
fail-fast: false
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js v16
- name: Use Node.js 22
uses: actions/setup-node@v1
with:
node-version: "16"
node-version: "22"
- run: npm install
- name: Create Pages
run: npm run typedoc
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@
"typescript": "^5.0.3"
},
"engines": {
"node": ">=14"
"node": ">=18"
}
}

0 comments on commit 60d9587

Please sign in to comment.