Skip to content

Commit

Permalink
chore: Upgrade to node 18.
Browse files Browse the repository at this point in the history
BREAKING CHANGE: This tool will now require at least node 18.
  • Loading branch information
amanda-mitchell authored Aug 26, 2023
1 parent 15e844a commit d59bae8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 12
node-version: 18
- name: Install dependencies
run: yarn --frozen-lockfile --ignore-scripts
- name: Prettier check
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 18
- run: yarn --frozen-lockfile --ignore-scripts
- run: yarn jest
release:
Expand All @@ -22,7 +22,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 12
node-version: 18
- name: Install dependencies
run: yarn --frozen-lockfile --ignore-scripts
- name: Release
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"license": "MIT",
"description": "A codemod that suppresses existing violations of eslint rules.",
"engines": {
"node": ">= 10.12.0"
"node": ">= 18"
},
"bin": {
"suppress-eslint-errors": "./bin/index.js"
Expand Down

0 comments on commit d59bae8

Please sign in to comment.