Skip to content

Commit 5e232a4

Browse files
authored
Merge pull request #383 from lloc/raise-coverage
Plugin check workflow added and existing workflows updated
2 parents 223899f + 96067a2 commit 5e232a4

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout project
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313
- name: Composer dependencies
1414
run: composer install --no-dev
1515
- name: Build

.github/workflows/plugin-check.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,12 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3
15-
14+
uses: actions/checkout@v4
15+
- name: Composer dependencies
16+
run: composer install --no-dev
17+
- name: Build
18+
run: |
19+
npm install
20+
npm run build
1621
- name: Run plugin check
1722
uses: wordpress/plugin-check-action@v1

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- name: Checkout project
8-
uses: actions/checkout@v3
8+
uses: actions/checkout@v4
99
- name: Composer dependencies
1010
run: composer install
1111
- name: Run Testsuite

0 commit comments

Comments
 (0)