-
Notifications
You must be signed in to change notification settings - Fork 115
245 lines (193 loc) · 7.93 KB
/
integrate.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
# https://docs.github.com/en/actions
name: "Integrate"
on:
pull_request:
branches:
- "master"
push:
branches:
- "master"
env:
PHP_EXTENSIONS: "mbstring, mysql"
jobs:
coding-standards:
name: "Coding Standards"
runs-on: "ubuntu-latest"
strategy:
matrix:
php-version:
- "7.4"
dependencies:
- "highest"
steps:
- name: "Checkout"
uses: "actions/checkout@v2.3.1"
- name: "Install PHP with extensions"
uses: "shivammathur/setup-php@2.16.0"
with:
coverage: "none"
extensions: "${{ env.PHP_EXTENSIONS }}"
php-version: "${{ matrix.php-version }}"
- name: "Validate composer.json"
working-directory: "./plugin-name"
run: "composer validate"
- name: "Determine composer cache directory"
working-directory: "./plugin-name"
id: "determine-composer-cache-directory"
run: "echo \"::set-output name=directory::$(composer config cache-dir)\""
- name: "Install highest dependencies from composer.json"
working-directory: "./plugin-name"
run: "composer update --no-interaction --no-progress --no-suggest"
- name: "Run ergebnis/composer-normalize"
working-directory: "./plugin-name"
run: "composer normalize --dry-run"
- name: "Run squizlabs/PHP_CodeSniffer"
working-directory: "./plugin-name"
run: "vendor/bin/phpcs -s --standard=CodeatCodingStandard --exclude=Squiz.PHP.CommentedOutCode,Generic.Commenting.Todo,SlevomatCodingStandard.Functions.UnusedParameter,SlevomatCodingStandard.Variables.UnusedVariable,Squiz.Commenting.FileComment ."
- name: "Cache dependencies installed with composer"
uses: "actions/cache@v2.0.0"
with:
path: "${{ steps.determine-composer-cache-directory.outputs.directory }}"
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('plugin-name/composer.json') }}"
restore-keys: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-"
# - name: "Readme Validation"
# run: |
# curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar && chmod +x wp-cli.phar && mv wp-cli.phar /usr/local/bin/wp
# wp package install swissspidy/validate-readme-command:dev-main --allow-root
# wp plugin validate-readme ./plugin-name/README.txt --allow-root
static-code-analysis:
name: "Static Code Analysis"
runs-on: "ubuntu-latest"
strategy:
matrix:
php-version:
- "7.4"
dependencies:
- "highest"
steps:
- name: "Checkout"
uses: "actions/checkout@v2.3.1"
- name: "Install PHP with extensions"
uses: "shivammathur/setup-php@2.20.1"
with:
coverage: "none"
extensions: "${{ env.PHP_EXTENSIONS }}"
php-version: "${{ matrix.php-version }}"
- name: "Determine composer cache directory"
working-directory: "./plugin-name"
id: "determine-composer-cache-directory"
run: "echo \"::set-output name=directory::$(composer config cache-dir)\""
- name: "Install highest dependencies from composer.json"
working-directory: "./plugin-name"
if: "matrix.dependencies == 'highest'"
run: "composer update --no-interaction --no-progress --no-suggest"
- name: "Run phpstan/phpstan"
working-directory: "./plugin-name"
run: "vendor/bin/phpstan analyse"
- name: "Cache dependencies installed with composer"
uses: "actions/cache@v2.0.0"
with:
path: "${{ steps.determine-composer-cache-directory.outputs.directory }}"
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('plugin-name/composer.json') }}"
restore-keys: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-"
node-build:
name: "Build scripts"
runs-on: ${{ matrix.os }}
strategy:
matrix:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: [ 16.x, 18.x, 20.x ]
os: [ ubuntu-latest, macos-latest, windows-latest ]
steps:
- name: "Checkout"
uses: "actions/checkout@v3"
- name: "Install NodeJS"
uses: "actions/setup-node@v3"
with:
node-version: ${{ matrix.node-version }}
- name: "install dependencies"
working-directory: "./plugin-name"
run: "npm install"
editorconfig-adherence:
name: "EditorConfig adherence"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout"
uses: "actions/checkout@v3"
- name: "Install NodeJS"
uses: "actions/setup-node@v3"
with:
node-version: '16'
- name: "install dependencies"
working-directory: "./plugin-name"
run: "npm install"
- name: "Check EditorConfig adherence"
working-directory: "./plugin-name"
run: "npx prettier --check . !vendor !tests !assets/build"
codeception-tests:
name: "Codeception tests"
timeout-minutes: 15
runs-on: "ubuntu-latest"
strategy:
matrix:
php-version:
- "7.4"
dependencies:
- "highest"
steps:
- name: "Checkout"
uses: "actions/checkout@v2.3.1"
- name: "Install PHP with extensions"
uses: "shivammathur/setup-php@2.20.1"
with:
coverage: "none"
extensions: "${{ env.PHP_EXTENSIONS }}"
php-version: "${{ matrix.php-version }}"
- name: "Determine composer cache directory"
working-directory: "./plugin-name"
id: "determine-composer-cache-directory"
run: "echo \"::set-output name=directory::$(composer config cache-dir)\""
- name: "Install highest dependencies from composer.json"
working-directory: "./plugin-name"
if: "matrix.dependencies == 'highest'"
run: "composer update --no-interaction --no-progress --no-suggest"
- name: "Cache dependencies installed with composer"
uses: "actions/cache@v2.0.0"
with:
path: "${{ steps.determine-composer-cache-directory.outputs.directory }}"
key: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('plugin-name/composer.json') }}"
restore-keys: "php-${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-"
- name: "Set up MySQL"
uses: "mirromutth/mysql-action@v1.1"
with:
collation server: utf8mb4_unicode_ci
mysql version: 8.0
mysql database: wordpress_unit_tests
container port: 3306
mysql root password: test
- name: "Wait for MySQL"
run: |
while ! mysqladmin ping --host=127.0.0.1 --password=test --silent; do
sleep 2
done
- name: "Set up WordPress"
run: |
curl -s -o /tmp/wp-cli.phar https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
chmod +x /tmp/wp-cli.phar && mv /tmp/wp-cli.phar /usr/local/bin/wp
mkdir -p /tmp/WP
cd /tmp/WP
wp core download
wp config create --dbname="wordpress_unit_tests" --dbuser="root" --dbpass="test" --dbhost="127.0.0.1:3306" --dbprefix="wp_full_"
wp core install --url="localhost:8000" --title="Test" --admin_user="admin" --admin_password="password" --admin_email="admin@plugin-name.test" --skip-email
wp rewrite structure '/%postname%/' --hard
# Needs changes to be used outside the boilerplate
ln -s ${GITHUB_WORKSPACE}/plugin-name /tmp/WP/wp-content/plugins/
- name: "Set Codeception parameters"
working-directory: "./plugin-name"
run: |
rm tests/_envs/.env
mv tests/_envs/.env.testing tests/_envs/.env
- name: "Run codeception wpunit"
working-directory: "./plugin-name"
run: |
./vendor/bin/codecept run wpunit