Skip to content

Commit

Permalink
Plugin check workflow added and existing workflows updated
Browse files Browse the repository at this point in the history
  • Loading branch information
lloc committed Sep 22, 2024
1 parent 8ced703 commit 96067a2
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 96067a2

Please sign in to comment.