From e476af666fb61c79b7d3d83108d1610890aaa198 Mon Sep 17 00:00:00 2001 From: Thomas Dietrich Date: Tue, 5 Nov 2024 23:22:44 +0100 Subject: [PATCH] Use corrent Node and Yarn version in Release workflow --- .github/workflows/release.yaml | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ce9ae7f..5f21df4 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -16,24 +16,17 @@ jobs: - name: Checkout uses: actions/checkout@master - - name: Get yarn cache - id: yarn-cache - run: echo "::set-output name=dir::$(yarn cache dir)" - - - uses: actions/cache@v1 - with: - path: ${{ steps.yarn-cache.outputs.dir }} - key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-yarn- + - name: Enable Corepack + run: corepack enable - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: - node-version: 19 + cache: yarn + node-version-file: .nvmrc - name: Install Dependencies - run: yarn install --frozen-lockfile + run: yarn install --immutable - name: Lint run: yarn lint