Skip to content

Bump actions/upload-artifact from 2.3.1 to 3.1.3 #315

Bump actions/upload-artifact from 2.3.1 to 3.1.3

Bump actions/upload-artifact from 2.3.1 to 3.1.3 #315

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
tags:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php:
- '8.0'
- '8.1'
node:
- '12'
- '14'
- '16'
laravel:
- 8.*
- 9.*
prefer:
- 'prefer-lowest'
- 'prefer-stable'
include:
- laravel: '8.*'
testbench: '6.*'
- laravel: '9.*'
testbench: '7.*'
name: PHP ${{ matrix.php }} - Node ${{ matrix.node }} - Laravel ${{ matrix.laravel }} --${{ matrix.prefer }}
steps:
- uses: actions/[email protected]
- 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
coverage: pcov
- uses: actions/[email protected]
name: Cache Composer dependencies
with:
path: ~/.composer/cache/files
key: composer-php-${{ matrix.php }}-${{ matrix.laravel }}-${{ matrix.prefer }}-${{ hashFiles('composer.json') }}
- uses: actions/[email protected]
name: Cache Node.js dependencies
with:
path: node_modules/
key: node-js-${{ matrix.node }}-${{ hashFiles('package.json') }}
- name: Install Chromium binary
run: |
sudo apt-get update
sudo apt-get install -y libnss3 chromium-browser
- name: Test Chromium binary
run: |
/usr/bin/chromium-browser --version
- uses: actions/[email protected]
name: Install Node.js
with:
node-version: '${{ matrix.node }}'
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --${{ matrix.prefer }} --prefer-dist --no-interaction --no-suggest
npm install
- name: Start webserver
run: |
node tests/fixtures/server.js &
- name: Run tests
run: |
vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml
- name: Upload artifacts
uses: actions/[email protected]
with:
name: screenshots
path: artifacts/screenshots
- uses: codecov/[email protected]
with:
fail_ci_if_error: false