diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c446436..86ca7ea 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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 }} @@ -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 diff --git a/README.md b/README.md index 8fbf713..88b0e51 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/package.json b/package.json index a6dab4d..a138763 100644 --- a/package.json +++ b/package.json @@ -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",