-
Notifications
You must be signed in to change notification settings - Fork 253
44 lines (44 loc) · 1.3 KB
/
test.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
41
42
43
44
name: Test
on:
pull_request:
paths-ignore: ['dist/**', '*.md']
push:
branches: [main, next, ci]
paths-ignore: ['dist/**', '*.md']
concurrency:
group: ${{ github.ref_name }}
cancel-in-progress: true
jobs:
test:
name: ${{ matrix.os[0] }}, PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}
runs-on: ${{ matrix.os[1] }}
continue-on-error: ${{ matrix.php == 8.3 }}
strategy:
matrix:
os: [[Ubuntu, ubuntu-latest], [Windows, windows-latest]]
php: [8.1, 8.2, 8.3]
laravel: [9, 10, 11]
exclude:
- php: 8.1
laravel: 11
include:
- php: 8.3
composer: --ignore-platform-req=php+
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: fileinfo
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
- run: composer require laravel/framework:"${{ matrix.laravel }}.*" --no-update --no-interaction
- uses: ramsey/composer-install@v2
with:
composer-options: ${{ matrix.composer }}
- run: vendor/bin/phpunit --testdox --colors=always
- run: npm ci && npm run build
- run: npm run test
- run: npm run typecheck