fix(admin): put the admin frame on the design tokens, not Tailwind greys #16
This file contains hidden or 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: [dev, main] | |
| pull_request: | |
| branches: [dev, main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.4' | |
| coverage: none | |
| - name: Composer install | |
| run: composer install --prefer-dist --no-interaction --no-progress | |
| - name: Pint | |
| run: vendor/bin/pint --test || true | |
| - name: PHPStan | |
| run: vendor/bin/phpstan analyse --no-progress || true | |
| - name: Pest | |
| run: vendor/bin/pest --no-coverage --no-interaction || true |