Skip to content

Commit

Permalink
build file update
Browse files Browse the repository at this point in the history
  • Loading branch information
adamsilverstein committed Oct 30, 2023
1 parent 253b7e1 commit 3ccd509
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/plugin-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,22 @@ jobs:
build-and-test-plugin:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Checkout code
uses: actions/checkout@v3

- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.2
coverage: none

# This action also handles the caching of the Yarn dependencies.
# https://github.com/actions/setup-node
- name: Set up node and enable caching of dependencies
uses: actions/setup-node@v3
with:
node-version: '14'
cache: 'yarn'

- name: Build
run: |
Expand Down

0 comments on commit 3ccd509

Please sign in to comment.