-
Notifications
You must be signed in to change notification settings - Fork 41
40 lines (36 loc) · 1.02 KB
/
test-conversion.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
on: push
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:
- uses: actions/checkout@v3
- 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: |
npm install
npm run build
npm link
composer create-project laravel/laravel myapp
cd myapp
composer require laravel/jetstream
php artisan jetstream:install inertia $FLAGS
npm link laravel-jetstream-react
npx laravel-jetstream-react install --force $FLAGS