Skip to content

Commit

Permalink
Merge branch 'master' into curl
Browse files Browse the repository at this point in the history
  • Loading branch information
javiercasares committed Feb 7, 2024
2 parents 5d1350f + ccfa589 commit 1d7ea51
Show file tree
Hide file tree
Showing 10 changed files with 999 additions and 205 deletions.
18 changes: 17 additions & 1 deletion .env.default
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,20 @@ export WPT_SSH_PRIVATE_KEY_BASE64=

# Output logging
# Use 'verbose' to increase verbosity
export WPT_DEBUG=
export WPT_DEBUG=

# Certificate validation
# Use 1 to validate, and 0 to not validate
export WPT_CERTIFICATE_VALIDATION=1

# WordPress flavor
# 0 = WordPress (simple version)
# 1 = WordPress Multisite
export WPT_FLAVOR=1

# Extra tests (groups)
# 0 = none
# 1 = ajax
# 2 = ms-files
# 3 = external-http
export WPT_EXTRATESTS=0
9 changes: 5 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ on:
# - cron: '0 0 * * *'
# Every 30 minutes.
# - cron: '0/30 * * * *'
workflow_dispatch:

# Cancels all previous workflow runs for pull requests that have not completed.
concurrency:
Expand All @@ -42,7 +43,7 @@ jobs:
test:
name: Run Core PHPUnit tests
runs-on: ubuntu-latest

# Remove this line if Github Actions is your preferred means of running the tests.
if: ${{ false }}

Expand All @@ -63,16 +64,16 @@ jobs:

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

- name: Set up PHP
uses: shivammathur/setup-php@947009a71769c25ab5292f073f5343624b7c879d # v2.12.0
uses: shivammathur/setup-php@c5fc0d8281aba02c7fda07d3a70cc5371548067d # v2.25.2
with:
php-version: '7.4'
coverage: none

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

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_Store
.env*
vendor/
package-lock.json
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: php
node_js:
- node
- 14

before_install:
- npm install -g npm@latest
Expand Down
Loading

0 comments on commit 1d7ea51

Please sign in to comment.