Skip to content

Commit

Permalink
fix(ci): remove npm commands from build-zip.yml
Browse files Browse the repository at this point in the history
- Eliminated the `npm install` and `npm build` commands from the 'Build plugin' step to streamline the workflow.
  • Loading branch information
chriskyfung authored Apr 28, 2024
1 parent e055990 commit 85581d7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build-zip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 85581d7

Please sign in to comment.