From 9f443304a576ed5f6e750de90f9c712600dfa4b9 Mon Sep 17 00:00:00 2001 From: Caen De Silva Date: Sun, 17 Nov 2024 16:16:08 +0100 Subject: [PATCH] Remove HydeFront assets build step --- .github/workflows/continuous-integration.yml | 35 -------------------- 1 file changed, 35 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 8bdcf5cc068..56d82e0519a 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -109,41 +109,6 @@ jobs: run: php monorepo/scripts/tests/${{ matrix.script }}.php - build-hydefront-assets: - - runs-on: ubuntu-latest - needs: run-smoke-tests - - steps: - - uses: actions/checkout@v4 - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - cache: 'npm' - - - name: Install Node.js dependencies - working-directory: 'packages/hydefront' - run: npm ci - - - name: Build assets for production - working-directory: 'packages/hydefront' - run: npm run build - - - name: Upload artifacts - uses: actions/upload-artifact@v4 - with: - name: 'hydefront' - path: 'packages/hydefront/dist' - - - name: Commit changes - uses: EndBug/add-and-commit@v9 - with: - add: 'packages/hydefront/dist' - message: 'Compile HydeFront assets for production' - new_branch: compile-hydefront - - build-tailwindcss: runs-on: ubuntu-latest