Skip to content

Commit

Permalink
chore: drop Node v12 support, and add v18 support (#621)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Node v12 is no longer supported
  • Loading branch information
koba04 committed Nov 1, 2022
1 parent 8dc1198 commit c065e68
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:

strategy:
matrix:
node-version: [14.x]
node-version: [18.x]
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [14.x, 16.x, 18.x]
os: [ubuntu-latest]

steps:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@cybozu/eslint-config",
"engines": {
"node": ">=12"
"node": ">=14"
},
"repository": "cybozu/eslint-config",
"homepage": "https://github.com/cybozu/eslint-config",
Expand Down

0 comments on commit c065e68

Please sign in to comment.