-
Notifications
You must be signed in to change notification settings - Fork 0
104 lines (75 loc) · 2.29 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: Run PHPCS, PHPLint, Psalm and Playwright
on: [pull_request, push]
jobs:
PHPCS:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
- name: Install Composer dependencies
uses: ramsey/composer-install@v3
- name: Show PHPCS sniffs
run: ./vendor/bin/phpcs -i
- name: Show PHPCS version
run: ./vendor/bin/phpcs --version
- name: Run PHP_CodeSniffer
run: composer phpcs
PHPLint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
- name: Install Composer dependencies
uses: ramsey/composer-install@v3
- name: Show PHPLint version info
run: ./vendor/bin/phplint --version
- name: Run PHPLint
run: composer phplint
Psalm:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
- name: Install Composer dependencies
uses: ramsey/composer-install@v3
- name: Show PHPCS sniffs
run: ./vendor/bin/phpcs -i
- name: Show version info
run: ./vendor/bin/psalm --version
- name: Run Psalm
run: composer psalm
Playwright:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: npm install -g pnpm && pnpm install
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- name: Start WordPress environment
run: npm run wp-env start
- name: Wait for WordPress environment to be ready
run: npx wait-on http://localhost:8888
- name: Run Playwright tests
run: pnpm exec playwright test
- name: Upload Playwright Report
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30