Skip to content

Commit 1d7ea51

Browse files
Merge branch 'master' into curl
2 parents 5d1350f + ccfa589 commit 1d7ea51

File tree

10 files changed

+999
-205
lines changed

10 files changed

+999
-205
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: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ on:
2020
# - cron: '0 0 * * *'
2121
# Every 30 minutes.
2222
# - cron: '0/30 * * * *'
23+
workflow_dispatch:
2324

2425
# Cancels all previous workflow runs for pull requests that have not completed.
2526
concurrency:
@@ -42,7 +43,7 @@ jobs:
4243
test:
4344
name: Run Core PHPUnit tests
4445
runs-on: ubuntu-latest
45-
46+
4647
# Remove this line if Github Actions is your preferred means of running the tests.
4748
if: ${{ false }}
4849

@@ -63,16 +64,16 @@ jobs:
6364

6465
steps:
6566
- name: Checkout repository
66-
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4
67+
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
6768

6869
- name: Set up PHP
69-
uses: shivammathur/setup-php@947009a71769c25ab5292f073f5343624b7c879d # v2.12.0
70+
uses: shivammathur/setup-php@c5fc0d8281aba02c7fda07d3a70cc5371548067d # v2.25.2
7071
with:
7172
php-version: '7.4'
7273
coverage: none
7374

7475
- name: Install NodeJS
75-
uses: actions/setup-node@25316bbc1f10ac9d8798711f44914b1cf3c4e954 # v2.4.0
76+
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
7677
with:
7778
node-version: 14
7879

.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

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: php
22
node_js:
3-
- node
3+
- 14
44

55
before_install:
66
- npm install -g npm@latest

0 commit comments

Comments
 (0)