Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node: [20, 21, 22, 23]
node: [20, 21, 22, 23, 24]

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

Expand All @@ -26,9 +26,9 @@ jobs:
- run: pnpm test
- run: pnpm build
- run: pnpm test:coverage
if: ${{ matrix.node == 23 }}
if: ${{ matrix.node == 23 || matrix.node == 24 }}
- uses: codecov/codecov-action@v4
if: ${{ matrix.node == 23 }}
if: ${{ matrix.node == 23 || matrix.node == 24 }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage/clover.xml
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ A Prettier plugin for sorting TailwindCSS classes **in any HTML-like language, l

## Requirements

* Node: `>= 20.9 < 24`
* Node: `>= 20.9 < 25`

## Installation

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"keywords": ["prettier", "tailwindcss", "formatter", "html", "twig"],
"type": "module",
"engines": {
"node": ">= 20.9 < 24"
"node": ">= 20.9 < 25"
},
"main": "./dist/index.js",
"exports": "./dist/index.js",
Expand Down