Skip to content

Commit

Permalink
bump node to v20
Browse files Browse the repository at this point in the history
  • Loading branch information
xxmichas committed Jun 25, 2024
1 parent 99292e1 commit 8e11d47
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions .changeset/pink-seahorses-poke.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
---

bump deps
bump node to v20
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 8
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x
cache: "pnpm"

- run: pnpm install --frozen-lockfile
- run: pnpm install
- run: pnpm run lint && pnpm run build && pnpm run test
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 8
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 20.x
cache: "pnpm"

- run: pnpm install --frozen-lockfile
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A small promise based wrapper for [@fastify/busboy](https://github.com/fastify/b

## 🛠️ Requirements

- Node.js >= 18
- Node.js >= 20

## ✨ Features

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.0.0"
"node": ">=20.0.0"
},
"scripts": {
"changeset": "changeset",
Expand Down

0 comments on commit 8e11d47

Please sign in to comment.