Skip to content

docs: fix typo (#348) #503

docs: fix typo (#348)

docs: fix typo (#348) #503

Workflow file for this run

name: Run tests
on:
push:
branches: [main]
paths-ignore:
- "docs/**"
- "README.md"
pull_request:
branches: [main]
jobs:
vite:
if: ${{ !startsWith(github.event.head_commit.message, 'release:') }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [16.x]
os: [ubuntu-latest, windows-latest]
name: Vite - Node ${{ matrix.os }} - ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Install pnpm
uses: pnpm/action-setup@v2.0.1
with:
version: 6.24.4
- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/
cache: "pnpm"
- run: pnpm install
- name: Build
run: pnpm run build
- name: Test
run: pnpm run test:vite
php:
if: ${{ !startsWith(github.event.head_commit.message, 'release:') }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.1, 8.0]
laravel: ["8.*", "9.*", 10.*]
stability: [prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: "8.*"
testbench: 6.*
- laravel: "9.*"
testbench: 7.x-dev
exclude:
- laravel: 10.*
php: 8.0
name: PHP ${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
coverage: none
- name: Setup problem matchers
run: |
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
- name: Execute tests
run: vendor/bin/pest