Skip to content

Commit

Permalink
Make sure nodejs runs with a specific version to not break build. (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndeet authored Dec 15, 2023
1 parent bda09dd commit 22825c1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/wp-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,15 @@ jobs:
dev: no
php_version: 7.4
php_extensions: bcmath
- name: Build assets and translation files
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install Node.js dependencies
run: |
npm install
- name: Build assets and translation files
run: |
npm run build
- name: WordPress Plugin Deploy
id: deploy
Expand Down

0 comments on commit 22825c1

Please sign in to comment.