test
All checks were successful
/ ls (push) Successful in 23s

This commit is contained in:
lubiana 2023-10-17 20:43:29 +02:00
parent cf25187eef
commit c769aa5fe4
No known key found for this signature in database

View file

@ -6,7 +6,16 @@ jobs:
image: git.php.fail/lubiana/container/php:8.2.11-node
steps:
- uses: actions/checkout@v3
- run: env | sort
- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- run: composer install
- run: composer fix
- name: GIT commit and push all changed files