From 85581d7f12057d7d5bbba3a250269b0a6551d4d2 Mon Sep 17 00:00:00 2001 From: "Chris K.Y. FUNG" <8746768+chriskyfung@users.noreply.github.com> Date: Sun, 28 Apr 2024 11:50:57 +0800 Subject: [PATCH] fix(ci): remove npm commands from build-zip.yml - Eliminated the `npm install` and `npm build` commands from the 'Build plugin' step to streamline the workflow. --- .github/workflows/build-zip.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build-zip.yml b/.github/workflows/build-zip.yml index 6cf2d21d..fa326737 100644 --- a/.github/workflows/build-zip.yml +++ b/.github/workflows/build-zip.yml @@ -12,11 +12,9 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Build plugin # Remove or modify this step as needed + - name: Build plugin # modify this step as needed run: | composer install --no-dev - npm install - npm run build - name: Generate zip uses: 10up/action-wordpress-plugin-build-zip@stable