From 34b8f1775b6de9f5ce0914d39b43d47d1299134b Mon Sep 17 00:00:00 2001 From: "stepan.moc" Date: Thu, 16 May 2024 09:48:10 +0200 Subject: [PATCH] repairs for build-frontend.yml (#94) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * changed node-version in build-frontend.yml Co-authored-by: Štěpán Moc --- .github/workflows/build-frontend.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-frontend.yml b/.github/workflows/build-frontend.yml index b83cf82..bbf29de 100644 --- a/.github/workflows/build-frontend.yml +++ b/.github/workflows/build-frontend.yml @@ -8,7 +8,7 @@ on: branches: [ "main" ] jobs: - build: + frontend: runs-on: ubuntu-latest permissions: contents: read @@ -21,9 +21,11 @@ jobs: - name: Install dependencies uses: actions/setup-node@v3 with: - node-version: 20 + node-version: 20.0.0 cache: 'npm' cache-dependency-path: frontend/package-lock.json + + - name: Install dependencies run: npm install - name: Build