Skip to content

Commit 6c7a301

Browse files
authored
Merge pull request #8 from ttskch/chore/support-node-23
chore: 🤖 support Node.js 23 (closes #7)
2 parents 0fb7715 + 7a8aec8 commit 6c7a301

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
os: [ubuntu-latest]
10-
node: [20, 21, 22]
10+
node: [20, 21, 22, 23]
1111

1212
runs-on: ${{ matrix.os }}
1313

@@ -26,7 +26,9 @@ jobs:
2626
- run: pnpm test
2727
- run: pnpm build
2828
- run: pnpm test:coverage
29+
if: ${{ matrix.node == 23 }}
2930
- uses: codecov/codecov-action@v4
31+
if: ${{ matrix.node == 23 }}
3032
with:
3133
token: ${{ secrets.CODECOV_TOKEN }}
3234
files: coverage/clover.xml

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A Prettier plugin for sorting TailwindCSS classes **in any HTML-like language, l
99

1010
## Requirements
1111

12-
* Node: `>= 20.9 < 23`
12+
* Node: `>= 20.9 < 24`
1313

1414
## Installation
1515

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"keywords": ["prettier", "tailwindcss", "formatter", "html", "twig"],
66
"type": "module",
77
"engines": {
8-
"node": ">= 20.9 < 23"
8+
"node": ">= 20.9 < 24"
99
},
1010
"main": "dist/index.js",
1111
"exports": {

0 commit comments

Comments
 (0)