UNPKG

wordpress-theme-boilerplate

Version:
43 lines (37 loc) 838 B
# Project's Travis CI configuration # Use node.js image language: node_js # Global Caching cache: directories: - node_modules/ - assets/vendor/ # First install bower and gulp-cli globally and then # install/require all dependencies before_script: - npm install -g bower gulp-cli - npm install - bower install --allow-root # Define whitelist branches: only: - master # Compile files script: - gulp build # Build artifacts # uncomment the following lines to deploy artifacts # be sure to set environment variables for aws # see more here: https://docs.travis-ci.com/user/uploading-artifacts/ # addons: # artifacts: # paths: # - assets/dist/ # - assets/vendor/ # - includes/ # - languages/ # - ./*.php # - style.css # - screenshot.* # - humans.txt # - LICENSE