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