Skip to content

Removed Mage_Persistent and improved cookie handling (#36) #411

Removed Mage_Persistent and improved cookie handling (#36)

Removed Mage_Persistent and improved cookie handling (#36) #411

Workflow file for this run

name: Composer
on:
push:
pull_request:
workflow_call:
workflow_dispatch:
jobs:
composer:
name: Validation
runs-on: [ubuntu-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Validate composer
run: composer validate --strict --no-check-all