feat(dashboard): add link parameters for cards #131
Workflow file for this run
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: crudBundle | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main, develop ] | |
env: | |
DATABASE_URL: mysql://root:root@127.0.0.1:3306/crud_bundle | |
jobs: | |
phpunit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: shivammathur/setup-php@2cb9b829437ee246e9b3cac53555a39208ca6d28 | |
with: | |
php-version: '8.1' | |
- uses: samin/mysql-action@v1.3 | |
with: | |
mysql root password: root | |
- uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: composer install -q --no-ansi --no-interaction --no-scripts --prefer-dist | |
- name: Yarn | |
run: cd tests/App && yarn install && yarn dev | |
- name: Execute tests (Unit and Feature tests) via PHPUnit | |
run: vendor/bin/simple-phpunit | |
- name: Check Code Styles | |
run: vendor/bin/ecs | |
- name: Check PHP Stan | |
run: vendor/bin/phpstan analyse src tests |