woocommerce/plugins/woocommerce-admin/.travis.yml

39 lines
997 B
YAML
Raw Normal View History

2018-09-24 16:25:06 +00:00
sudo: required
2018-09-21 13:06:16 +00:00
language: php
2019-06-12 17:46:08 +00:00
dist: trusty
matrix:
include:
- name: "PHP 7.2 unit tests, PHP Coding standards check and JS tests"
php: 7.2
env: WP_VERSION=latest WP_MULTISITE=0 WP_CORE_DIR=/tmp/wordpress RUN_PHPCS=1 RUN_JS=1
- name: "PHP 7.1 unit tests"
php: 7.1
env: WP_VERSION=latest WP_MULTISITE=0 WP_CORE_DIR=/tmp/wordpress
- name: "PHP 7.0 unit tests"
php: 7.0
env: WP_VERSION=latest WP_MULTISITE=0 WP_CORE_DIR=/tmp/wordpress
- name: "PHP 5.6 unit tests"
php: 5.6
env: WP_VERSION=latest WP_MULTISITE=0 WP_CORE_DIR=/tmp/wordpress
before_install:
- nvm install 'lts/*'
2018-09-21 13:16:53 +00:00
2018-09-21 13:06:16 +00:00
before_script:
- phpenv config-rm xdebug.ini
- export PATH="$WP_CORE_DIR/wp-content/plugins/woocommerce-admin/vendor/bin:$PATH"
2018-09-21 13:06:16 +00:00
- bash bin/install-wp-tests.sh wc_admin_test root '' localhost $WP_VERSION
- bash bin/travis.sh before
- node --version
- npm --version
- timedatectl
2018-09-24 16:25:06 +00:00
2018-04-17 21:03:14 +00:00
script:
- bash bin/js_lint_test.sh
2018-09-21 13:06:16 +00:00
- bash bin/phpunit.sh
- bash bin/phpcs.sh