style: add cursor pointers to all buttons for consistency and better ux #5134
Workflow file for this run
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: Build and test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| release: | |
| types: [created] | |
| concurrency: | |
| group: Build ${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| checks: write | |
| id-token: write | |
| jobs: | |
| tests: | |
| name: Run tests | |
| uses: monicahq/workflows/.github/workflows/laravel.yml@v2 | |
| with: | |
| php-versions: "['8.3', '8.4']" | |
| connections: "['sqlite', 'mysql', 'pgsql']" | |
| default-php-version: '8.3' | |
| default-connection: sqlite | |
| project: monica | |
| secrets: | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
| assets: | |
| name: Build assets | |
| uses: monicahq/workflows/.github/workflows/build_assets.yml@v2 | |
| with: | |
| node-version: 22 |