Skip to content

Bump axios from 1.13.2 to 1.16.0 #60

Bump axios from 1.13.2 to 1.16.0

Bump axios from 1.13.2 to 1.16.0 #60

Workflow file for this run

name: CI Tests
on:
pull_request:
# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
# The concurrency group contains the workflow name and the branch name.
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
run-phpcs:
name: Run PHPCS
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ "8.3", "8.4" ]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup
id: ci-setup
uses: thefrosty/ci-setup@main
with:
extensions: 'curl'
extensions-cache-key: run-phpcs-${{ matrix.php-version }}
php-version: ${{ matrix.php-version }}
token: ${{ secrets.GITHUB_TOKEN }}
tools: 'composer, cs2pr, phpcs'
- name: Run PHPCS
continue-on-error: false
id: phpcs
run: composer phpcs
env:
CHANGED_FILES: ${{ steps.ci-setup.outputs.files }}
PHP_VERSION: ${{ matrix.php-version }}
- name: Show PHPCS results in PR
if: ${{ always() && steps.phpcs.outcome == 'failure' && matrix.php-version == '8.3' }}
run: cs2pr ./phpcs-report.xml