diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 3415f1b..28d9ccd 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -14,19 +14,19 @@ jobs: strategy: matrix: - node: [18.12.1, 18.x] + node: [18.14.0, 18.x] steps: - name: Checkout 🛎️ - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: pnpm 🧰 - uses: pnpm/action-setup@v2.2.4 + uses: pnpm/action-setup@v4 with: - version: 7 + version: 9 - name: Node 🧰 - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node }} cache: 'pnpm' diff --git a/README.md b/README.md index 6aabe1d..58f61f3 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ To run the project locally, here’s what you’ll need: ### Requirements * [Cloudinary] account -* [Node.js](https://nodejs.org/) 18 or greater +* [Node.js](https://nodejs.org/) 18.14 or greater ### Setup diff --git a/package.json b/package.json index 4fdc0c1..d7d412a 100644 --- a/package.json +++ b/package.json @@ -79,8 +79,9 @@ "test": "uvu netlify .test.js", "format": "pnpm rome format src scripts --write", "lint": "pnpm rome check src scripts", - "dep:upgrade:major": "npx npm-check-updates -u", - "dep:upgrade:minor": "npm run dep:upgrade:major -- --target minor" + "dep:major": "pnpm dlx npm-check-updates --packageFile '**/package.json' -u", + "dep:minor": "pnpm dep:major -t minor", + "ls-engines": "pnpm dlx ls-engines" }, "browserslist": "> 0.5%, last 2 versions, not dead" }