Skip to content

Commit c84c835

Browse files
authored
fix: add steps to verify PHP and Node versions before build (#229)
1 parent af5ef16 commit c84c835

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/reusable-release-wporg.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,15 @@ jobs:
3434
node-version-file: '.nvmrc'
3535
cache: 'npm'
3636

37+
- name: Verify Node version
38+
run: node --version
39+
40+
- name: Setup PHP
41+
uses: shivammathur/setup-php@v2
42+
with:
43+
php-version: '8.3'
44+
tools: composer
45+
3746
- name: Install PHP packages
3847
run: composer install --no-dev --no-scripts
3948

0 commit comments

Comments
 (0)