From 20beca9025fe9046f9f2f4a6b0030dff39a921ea Mon Sep 17 00:00:00 2001 From: Herwin Bozet Date: Tue, 26 Nov 2024 21:42:45 +0100 Subject: [PATCH] Removed beautifier step Update php-render.yml --- .github/workflows/php-render.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/php-render.yml b/.github/workflows/php-render.yml index 7078a3e..3f83edf 100644 --- a/.github/workflows/php-render.yml +++ b/.github/workflows/php-render.yml @@ -15,15 +15,6 @@ jobs: submodules: true fetch-depth: 0 - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: 'latest' - - - name: Install HTML Beautifier - run: | - npm install -g beautify -g - - name: Setup PHP uses: shivammathur/setup-php@v2 with: @@ -35,11 +26,6 @@ jobs: cd htdocs php ./index.php > ./index.raw.html - - name: Beautify HTML - run: | - cd htdocs - beautify -o ./index.raw.html ./index.html - - name: Upload `index.html` build artifact uses: actions/upload-artifact@v4 if: ${{ github.actor == 'aziascreations' }}