From 110bd10db7577812b08c245460ff9c752d9618ef Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Wed, 1 Oct 2025 07:15:42 +0000 Subject: [PATCH] feat: Add Node.js setup and yarn install to CI Co-authored-by: miklos.szanyi --- .github/workflows/CI-CD.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/CI-CD.yaml b/.github/workflows/CI-CD.yaml index cc8cf46..6d0e2d4 100644 --- a/.github/workflows/CI-CD.yaml +++ b/.github/workflows/CI-CD.yaml @@ -26,6 +26,13 @@ jobs: steps: - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'yarn' + + - run: yarn install --frozen-lockfile + - name: Download build artifact uses: actions/download-artifact@v4 with: