diff --git a/.github/actions/install/action.yml b/.github/actions/install/action.yml index 4896742..0aae566 100644 --- a/.github/actions/install/action.yml +++ b/.github/actions/install/action.yml @@ -4,7 +4,7 @@ description: Install everything for the repo inputs: node-version: description: Version of Node to use - default: 18.x + default: 20.x pnpm-version: description: Version of pnpm to use diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index f9f7a59..d1d598b 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -13,8 +13,8 @@ jobs: - name: 📦 Install uses: ./.github/actions/install with: - node-version: 18 - pnpm-version: 8.3.1 + node-version: 20 + pnpm-version: 8.10.5 - name: 🚨 Lint run: pnpm lint diff --git a/.nvmrc b/.nvmrc index 3c03207..209e3ef 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -18 +20 diff --git a/README.md b/README.md index 1f23628..4848d7e 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ degit jimmy-guzman/react-starter ## Getting Started -Make sure you're using [node 18](https://nodejs.dev/en/about/releases), I recommend using [fnm](https://github.com/Schniz/fnm) which will allow to simply run: +Make sure you're using [node 20](https://nodejs.dev/en/about/releases), I recommend using [fnm](https://github.com/Schniz/fnm) which will allow to simply run: ``` fnm use @@ -100,10 +100,10 @@ pnpm format _you can run `pnpm format:fix` to fix all format errors_ -To validate everything, run the following command: +To interactively update dependencies, run the following command: ``` -pnpm validate +pnpm deps:update ``` ## Recommendations diff --git a/package.json b/package.json index 819081c..2a8ae7d 100644 --- a/package.json +++ b/package.json @@ -58,9 +58,9 @@ "vite": "5.0.0", "vitest": "0.34.6" }, - "packageManager": "pnpm@8.3.1", + "packageManager": "pnpm@8.10.5", "engines": { - "node": "18", - "pnpm": "8.3.1" + "node": "20", + "pnpm": "8.10.5" } }