From aaed7629fbe60a5f10a1462126d3659d1bc6eecb Mon Sep 17 00:00:00 2001 From: andrewlalis Date: Fri, 27 Mar 2026 08:41:30 -0400 Subject: [PATCH] Add 'enable corepack' to web app CI --- .gitea/workflows/web-app.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/web-app.yaml b/.gitea/workflows/web-app.yaml index a479992..de5b970 100644 --- a/.gitea/workflows/web-app.yaml +++ b/.gitea/workflows/web-app.yaml @@ -13,6 +13,8 @@ jobs: with: node-version: '22.x' cache: 'yarn' + - name: Enable Corepack + run: corepack enable - name: Install Dependencies run: yarn install --immutable working-directory: ./web-app