Add renovate.json #125
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches-ignore: | |
- master | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
fetch-depth: 1 | |
- name: Prepare the environment | |
run: cp .env.ci .env | |
- name: Install Composer dependencies | |
run: composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader --ignore-platform-reqs | |
- name: Generate application key | |
run: php artisan key:generate | |
- name: Run phpunit tests | |
run: php vendor/bin/phpunit | |
- name: Upgrade Chrome Driver | |
run: php artisan dusk:chrome-driver `/opt/google/chrome/chrome --version | cut -d " " -f3 | cut -d "." -f1` | |
- name: Start Chrome Driver | |
run: ./vendor/laravel/dusk/bin/chromedriver-linux & | |
- name: Run Laravel Server | |
run: php artisan serve & | |
- name: Run Dusk Tests | |
env: | |
APP_URL: "http://127.0.0.1:8000" | |
run: php artisan dusk |