From 6597d491cd007898ca6a447815efa1942f0e0e73 Mon Sep 17 00:00:00 2001 From: Ivan <8611739+IRBorisov@users.noreply.github.com> Date: Fri, 12 Apr 2024 21:10:15 +0300 Subject: [PATCH] Update frontend.yml --- .github/workflows/frontend.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index bdfe6045..4282acd1 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -30,6 +30,10 @@ jobs: with: node-version: ${{ matrix.node-version }} cache: 'npm' - - run: npm ci - - run: npm run build --if-present - - run: npm test + - name: Build + run: | + npm ci + npm run build --if-present + - name: Test + run: | + npm test