.github/workflows/nightly-clone.yml #884
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
on: | |
schedule: | |
- cron: '13 4 * * *' | |
jobs: | |
ensure_conversion_works: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- name: Normal Conversion | |
flags: '' | |
- name: Teams Conversion | |
flags: '--teams' | |
- name: SSR Conversion | |
flags: '--ssr' | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.1' | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Test the conversion works | |
env: | |
FLAGS: ${{ matrix.flags }} | |
run: | | |
composer create-project laravel/laravel myapp | |
cd myapp | |
composer require laravel/jetstream | |
php artisan jetstream:install inertia $FLAGS | |
npx laravel-jetstream-react install --force $FLAGS |