diff --git a/.forgejo/workflows/typo3-staged-deploy.yaml b/.forgejo/workflows/typo3-staged-deploy.yaml index e8c51a3..32b0e41 100644 --- a/.forgejo/workflows/typo3-staged-deploy.yaml +++ b/.forgejo/workflows/typo3-staged-deploy.yaml @@ -90,17 +90,16 @@ jobs: tools: composer - name: Setup Node.js - if: ${{ inputs.build_frontend == true }} + if: ${{ inputs.build_frontend }} uses: actions/setup-node@v4 with: node-version: ${{ inputs.node_version }} - cache: 'npm' - name: Install PHP dependencies run: composer install --prefer-dist --no-progress --no-dev --ignore-platform-reqs - name: Install Node dependencies & build - if: ${{ inputs.build_frontend == true }} + if: ${{ inputs.build_frontend }} run: | npm ci npm run build