From 7fd3fb34c77df4cf0fa0a8b3c87fa862bfc9a7fe Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Sat, 3 May 2025 07:33:20 -0700 Subject: [PATCH] Updated GitHub Actions workflow --- .github/workflows/ci-suite.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-suite.yaml b/.github/workflows/ci-suite.yaml index cfc8e07..a7c7120 100644 --- a/.github/workflows/ci-suite.yaml +++ b/.github/workflows/ci-suite.yaml @@ -6,7 +6,6 @@ env: NODE_VERSION: 22 jobs: - bundle-assets: name: Bundle Assets runs-on: ubuntu-latest @@ -132,7 +131,7 @@ jobs: name: Build & Push Image runs-on: ubuntu-latest if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') - needs: [asset-compilation, coding-standards, static-analysis, tests] + needs: [bundle-assets, js-coding-standards, php-coding-standards, static-analysis, tests] env: DOCKER_HUB_USER: phlak @@ -171,7 +170,7 @@ jobs: name: Create Release runs-on: ubuntu-latest if: startsWith(github.ref, 'refs/tags/') - needs: [asset-compilation, coding-standards, static-analysis, tests] + needs: [bundle-assets, js-coding-standards, php-coding-standards, static-analysis, tests] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}