docs(seo): record batch 16 + seo-feedback skill in progress log #237
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: | |
| - develop | |
| - main | |
| - master | |
| - workos | |
| pull_request: | |
| branches: | |
| - develop | |
| - main | |
| - master | |
| - workos | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| environment: Testing | |
| strategy: | |
| matrix: | |
| php-version: ['8.4', '8.5'] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| tools: composer:v2 | |
| coverage: xdebug | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Install Node Dependencies | |
| run: npm i | |
| - name: Add Flux Credentials Loaded From ENV | |
| run: composer config http-basic.composer.fluxui.dev "${{ secrets.FLUX_USERNAME }}" "${{ secrets.FLUX_LICENSE_KEY }}" | |
| # Create the SQLite file before composer install — otherwise package:discover | |
| # crashes in AppServiceProvider (WAL PRAGMA needs the file to exist). | |
| - name: Create SQLite database file | |
| run: mkdir -p database && touch database/database.sqlite | |
| - name: Install Dependencies | |
| run: composer install --no-interaction --prefer-dist --optimize-autoloader | |
| - name: Copy Environment File | |
| run: cp .env.example .env | |
| - name: Generate Application Key | |
| run: php artisan key:generate | |
| - name: Run Migrations | |
| run: php artisan migrate --force | |
| - name: Build Assets | |
| run: npm run build | |
| - name: Run Tests | |
| run: ./vendor/bin/pest |