diff --git a/.probo.yaml b/.probo.yaml index f8c16f0..39b0221 100644 --- a/.probo.yaml +++ b/.probo.yaml @@ -1,23 +1,9 @@ image: proboci/ubuntu:18.04-php7.3 steps: - - name: Download Drupal 8 Core latest. + - name: Setting up test html. plugin: Script script: | - composer create-project drupal-composer/drupal-project:8.x-dev /tmp/src --no-interaction - cp -Rf /tmp/src/* /src - cd /src - composer require drupal/devel drush/drush cweagans/composer-patches - composer install - - name: Drupal site install. - plugin: Drupal - clearCaches: false - subDirectory: web - drupalVersion: 8 - - name: Install Drupal site. - plugin: Script - script: | - vendor/drush/drush/drush site-install -y --root=/var/www/html standard --db-url='mysqli://root:strongpassword@localhost/drupal' - - name: Generate login link. - plugin: Script - script: | - vendor/drush/drush/drush uli + mkdir /src/build + echo "hello world" > /src/build/index.html + - name: StaticApp Test.. + plugin: StaticApp