Skip to content

Commit

Permalink
chore: move build process to node 22.x (#745)
Browse files Browse the repository at this point in the history
  • Loading branch information
aversini authored Dec 11, 2024
1 parent 7c4c242 commit 1a45c22
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
- name: Setup PNPM
uses: pnpm/action-setup@v4

- name: Use Node.js 20.x
- name: Use Node.js 22.x
uses: useblacksmith/setup-node@v5
with:
node-version: 20.x
node-version: 22.x
registry-url: "https://registry.npmjs.org"
cache: "pnpm"

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull-requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
pull-requests: write
strategy:
matrix:
node-version: [20.x]
node-version: [22.x]

steps:
- name: Checkout
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
runs-on: blacksmith-4vcpu-ubuntu-2204
strategy:
matrix:
node-version: [20.x]
node-version: [22.x]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
pull-requests: write
strategy:
matrix:
node-version: [20.x]
node-version: [22.x]
steps:
# secrets.GITHUB_TOKEN is used by default with "checkout",
# but in this case we are explicitely using a personal
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: useblacksmith/setup-node@v5
if: ${{ steps.release.outputs.releases_created }}
with:
node-version: 20.x
node-version: 22.x
registry-url: "https://registry.npmjs.org"
cache: "pnpm"

Expand Down
2 changes: 1 addition & 1 deletion examples/with-webpack/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

import { twPlugin } from "@versini/ui-styles";

module.exports = twPlugin.merge({
export default twPlugin.merge({
content: ["./src/**/*.{js,ts,jsx,tsx}"],
});

0 comments on commit 1a45c22

Please sign in to comment.