Skip to content

build(deps): bump follow-redirects from 1.15.2 to 1.15.4 #2782

build(deps): bump follow-redirects from 1.15.2 to 1.15.4

build(deps): bump follow-redirects from 1.15.2 to 1.15.4 #2782

Workflow file for this run

name: tests
on:
- push
jobs:
build:
name: PHP ${{ matrix.php-version }}
runs-on: ubuntu-latest
strategy:
# fail-fast: true
matrix:
php-version: [8.1, 8.2, 8.3]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: composer:v2
coverage: xdebug
- name: Install Dependencies (Composer)
uses: nick-invision/retry@v2
with:
timeout_minutes: 5
max_attempts: 3
command: composer update --no-interaction --no-progress
- name: Install Dependencies (NPM)
uses: nick-invision/retry@v2
with:
timeout_minutes: 5
max_attempts: 3
command: npm install
- name: Prepare
run: |
php artisan config:clear
npm run dev
- name: Execute Tests
run: ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
- name: Send Coverage To Coveralls
uses: coverallsapp/github-action@v2