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