From b99a4842a9556c5553ac2a5658eeb2bc10b7b937 Mon Sep 17 00:00:00 2001 From: Marc 'risson' Schmitt Date: Mon, 7 Oct 2024 17:29:51 +0200 Subject: [PATCH] ci: require ci-web.build for merging Signed-off-by: Marc 'risson' Schmitt --- .github/workflows/ci-web.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci-web.yml b/.github/workflows/ci-web.yml index 1a054d433c..ab5a9990a0 100644 --- a/.github/workflows/ci-web.yml +++ b/.github/workflows/ci-web.yml @@ -50,15 +50,7 @@ jobs: - name: Lint working-directory: ${{ matrix.project }}/ run: npm run ${{ matrix.command }} - ci-web-mark: - needs: - - lint - runs-on: ubuntu-latest - steps: - - run: echo mark build: - needs: - - ci-web-mark runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -74,6 +66,13 @@ jobs: - name: build working-directory: web/ run: npm run build + ci-web-mark: + needs: + - build + - lint + runs-on: ubuntu-latest + steps: + - run: echo mark test: needs: - ci-web-mark