Use default Node version in CI

GitHub's default Node version doesn't require additional downloads or installations. Currently the LTS and default version are similar, but I think it would be best to stay consistent with the other repositories.
This commit is contained in:
Nick McCurdy 2023-09-12 21:36:02 -04:00
parent 50f84218cd
commit b6a1ffd4b5
2 changed files with 0 additions and 2 deletions

View File

@ -18,7 +18,6 @@ jobs:
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install

View File

@ -23,7 +23,6 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: 'pnpm'
- name: Install Dependencies