Skip to content

Bump the npm-major group across 1 directory with 2 updates #873

Bump the npm-major group across 1 directory with 2 updates

Bump the npm-major group across 1 directory with 2 updates #873

Workflow file for this run

name: Testing
on:
pull_request:
push:
branches:
- 2.x
jobs:
test-js:
name: Test asset generation process on Node
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version: 24
- name: Try to build the assets
run: |
npm ci
npm run build
- name: Upload built assets
uses: actions/upload-artifact@v7
with:
name: vite-build
path: public/build
test-php:
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
runs-on: ${{ matrix.operating-system }}
needs: test-js
strategy:
matrix:
operating-system: [ ubuntu-latest ]
php-versions: [ '8.2', '8.3', '8.4', '8.5' ]
steps:
- uses: actions/checkout@v6
- uses: actions/download-artifact@v8
with:
name: vite-build
path: public/build
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: dom, curl, libxml, mbstring, zip, json
- name: Get Composer Cache Directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v5
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Prepare the environment
run: cp .env.example .env && touch database/testing.sqlite
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run PHP CS
run: composer run lint
- name: Run PHPunit
run: composer run test
- name: Report coverage to Codacy
uses: codacy/codacy-coverage-reporter-action@v1.3.0
if: ${{ github.ref == 'refs/heads/2.x' }}
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: ./test-coverage.xml
- name: Upload Laravel logs on failure
if: ${{ failure() }}
uses: actions/upload-artifact@v7
with:
name: logs-test-php-${{ matrix.php-versions }}
path: storage/logs/**
if-no-files-found: ignore