diff --git a/.github/workflows/build-lint-test.yml b/.github/workflows/build-lint-test.yml index 18d3a74..8228826 100644 --- a/.github/workflows/build-lint-test.yml +++ b/.github/workflows/build-lint-test.yml @@ -8,14 +8,18 @@ jobs: name: Prepare runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - name: Use Node.js uses: actions/setup-node@v4 with: - node-version-file: '.nvmrc' - cache: 'yarn' + node-version: 'lts/*' - name: Install Yarn run: corepack enable + - uses: actions/checkout@v4 + - name: Use Node.js and install dependencies + uses: actions/setup-node@v4 + with: + node-version: 'lts/*' + cache: 'yarn' - name: Install Yarn dependencies run: yarn --immutable