parent
cf25187eef
commit
c769aa5fe4
1 changed files with 10 additions and 1 deletions
|
@ -6,7 +6,16 @@ jobs:
|
||||||
image: git.php.fail/lubiana/container/php:8.2.11-node
|
image: git.php.fail/lubiana/container/php:8.2.11-node
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- 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 install
|
||||||
- run: composer fix
|
- run: composer fix
|
||||||
- name: GIT commit and push all changed files
|
- name: GIT commit and push all changed files
|
||||||
|
|
Loading…
Reference in a new issue