chore(deps): upgrade yarn (#430)

* chore(deps): upgrade yarn

* chore(ci): enable corepack
This commit is contained in:
2025-11-27 16:24:59 +02:00
committed by GitHub
parent e6e3327e3b
commit 383a494113
7 changed files with 8284 additions and 6344 deletions

View File

@@ -24,9 +24,9 @@ jobs:
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
always-auth: true
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
scope: '@ivuorinen'
node-version-file: ".nvmrc"
registry-url: "https://registry.npmjs.org"
scope: "@ivuorinen"
- name: Cache Node Modules
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
@@ -35,6 +35,11 @@ jobs:
path: node_modules
key: node-modules-${{ hashFiles('**/yarn.lock') }}
- name: Enable corepack
id: corepack
shell: bash
run: corepack enable
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install