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..84e0f2b 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -13,7 +13,7 @@ jobs: - name: 📦 Install uses: ./.github/actions/install with: - node-version: 18 + node-version: 20 pnpm-version: 8.3.1 - name: 🚨 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..14930b5 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 diff --git a/package.json b/package.json index 819081c..f9b9d04 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,7 @@ }, "packageManager": "pnpm@8.3.1", "engines": { - "node": "18", + "node": "20", "pnpm": "8.3.1" } }