From b6a1ffd4b5f0de06d46d6c0b807d3f6d3889014d Mon Sep 17 00:00:00 2001 From: Nick McCurdy Date: Tue, 12 Sep 2023 21:36:02 -0400 Subject: [PATCH] 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. --- .github/workflows/CI.yml | 1 - .github/workflows/release.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index dd2c4faa..cb03ea12 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 34a7270b..5c3dc0d1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,6 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: 'lts/*' cache: 'pnpm' - name: Install Dependencies