malabya
8/27/2018 - 9:29 AM

A basic config file for Circle CI

A basic config file for Circle CI

version: 2
jobs:
  build:
    docker:
      - image: valuebound/appserver:latest
    working_directory: /var/www/html

    steps:
      - checkout
      - run: 
        name: Composer Install
        command: |
          composer install -n --prefer-dist
      - run: 
          name: Run PHPCS for Code sanity
          command: |
            ./vendor/bin/phpcs --standard=Drupal --extensions=php,module,inc,install,test,profile,theme,css,info,txt,md web/modules/custom