Skip to content

🚨 [security] [js] Update axios 1.10.0 → 1.12.0 (minor) #46

🚨 [security] [js] Update axios 1.10.0 → 1.12.0 (minor)

🚨 [security] [js] Update axios 1.10.0 → 1.12.0 (minor) #46

Workflow file for this run

name: tests
on:
push:
branches:
- develop
- main
pull_request:
branches:
- develop
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.4
tools: composer:v2
coverage: xdebug
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install Bun Dependencies
run: bun install
- name: Build Assets
run: bun run build
- name: Install PHP Dependencies
run: composer install --no-interaction --prefer-dist --optimize-autoloader
- name: Copy Environment File
run: cp .env.example .env
- name: Generate Application Key
run: php artisan key:generate
- name: Tests
run: ./vendor/bin/pest