From f9b0f96ad86ff972ea2f53dac60a95adfd100e50 Mon Sep 17 00:00:00 2001 From: Phill Pover Date: Thu, 27 Mar 2025 11:37:41 +0000 Subject: [PATCH] Adding stage names --- .gitea/workflows/workflow.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/workflow.yaml b/.gitea/workflows/workflow.yaml index 706db1f..d830948 100644 --- a/.gitea/workflows/workflow.yaml +++ b/.gitea/workflows/workflow.yaml @@ -7,6 +7,8 @@ on: jobs: test: runs-on: ubuntu-latest + container: + image: catthehacker/ubuntu:act-latest strategy: fail-fast: false matrix: @@ -19,11 +21,14 @@ jobs: uses: https://github.com/actions/setup-node@v3 with: node-version: '18.19' - - run: npm ci + - name: Clean install + run: npm ci working-directory: ./${{ matrix.workingdir }} - - run: npm run lint + - name: Run lint + run: npm run lint working-directory: ./${{ matrix.workingdir }} - - run: npm run test + - name: Run tests + run: npm run test working-directory: ./${{ matrix.workingdir }} build-and-push-images: