Skip to content

Commit

Permalink
Merge pull request #383 from lloc/raise-coverage
Browse files Browse the repository at this point in the history
Plugin check workflow added and existing workflows updated
  • Loading branch information
lloc authored Sep 22, 2024
2 parents 223899f + 96067a2 commit 5e232a4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Composer dependencies
run: composer install --no-dev
- name: Build
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/plugin-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

uses: actions/checkout@v4
- name: Composer dependencies
run: composer install --no-dev
- name: Build
run: |
npm install
npm run build
- name: Run plugin check
uses: wordpress/plugin-check-action@v1
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Composer dependencies
run: composer install
- name: Run Testsuite
Expand Down

0 comments on commit 5e232a4

Please sign in to comment.