Add reusable data table component #127
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: Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
release: | |
types: [created] | |
concurrency: | |
group: tests-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, 'Update CHANGELOG')" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup project | |
uses: ./.github/workflows/setup-project | |
- name: Compile assets | |
run: npm run build | |
- name: Prepare application | |
run: | | |
cp .env.example .env | |
php artisan key:generate | |
- name: Run coverage checks | |
run: composer coverage && composer type-coverage | |
- name: Run tests | |
run: composer test |