Skip to content

Commit

Permalink
chore: drop Node.js 16 (#5592)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenjoezhang authored Dec 24, 2024
1 parent ebe92ba commit 51dcd8d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: ["14", "16", "18"]
node-version: ["18", "20", "22"]
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand All @@ -39,7 +39,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: ["14", "16", "18"]
node-version: ["18", "20", "22"]
fail-fast: false
env:
comment_file: ".tmp-comment-flamegraph-node${{ matrix.node-version }}.md"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 14.x
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: "14.x"
node-version: "22"
- name: Install Dependencies
run: npm install
- name: Lint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: ["14.x", "16.x", "18.x"]
node-version: ["18", "20", "22"]
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand All @@ -49,7 +49,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: ["14.x"]
node-version: ["22"]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,6 @@
"typescript": "^5.3.2"
},
"engines": {
"node": ">=14"
"node": ">=18"
}
}

0 comments on commit 51dcd8d

Please sign in to comment.