Skip to content

Commit 1b1398b

Browse files
authored
Merge branch 'master' into mysql
2 parents d1a48ad + 05b8aee commit 1b1398b

File tree

9 files changed

+857
-171
lines changed

9 files changed

+857
-171
lines changed

.env.default

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,20 @@ export WPT_SSH_PRIVATE_KEY_BASE64=
5959

6060
# Output logging
6161
# Use 'verbose' to increase verbosity
62-
export WPT_DEBUG=
62+
export WPT_DEBUG=
63+
64+
# Certificate validation
65+
# Use 1 to validate, and 0 to not validate
66+
export WPT_CERTIFICATE_VALIDATION=1
67+
68+
# WordPress flavor
69+
# 0 = WordPress (simple version)
70+
# 1 = WordPress Multisite
71+
export WPT_FLAVOR=1
72+
73+
# Extra tests (groups)
74+
# 0 = none
75+
# 1 = ajax
76+
# 2 = ms-files
77+
# 3 = external-http
78+
export WPT_EXTRATESTS=0

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,16 +64,16 @@ jobs:
6464

6565
steps:
6666
- name: Checkout repository
67-
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4
67+
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
6868

6969
- name: Set up PHP
70-
uses: shivammathur/setup-php@947009a71769c25ab5292f073f5343624b7c879d # v2.12.0
70+
uses: shivammathur/setup-php@c5fc0d8281aba02c7fda07d3a70cc5371548067d # v2.25.2
7171
with:
7272
php-version: '7.4'
7373
coverage: none
7474

7575
- name: Install NodeJS
76-
uses: actions/setup-node@25316bbc1f10ac9d8798711f44914b1cf3c4e954 # v2.4.0
76+
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
7777
with:
7878
node-version: 14
7979

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.DS_Store
22
.env*
33
vendor/
4+
package-lock.json

0 commit comments

Comments
 (0)