Skip to content

Commit

Permalink
ci: re-cache dependencies but with lock file
Browse files Browse the repository at this point in the history
  • Loading branch information
KennethTrecy committed Aug 27, 2023
1 parent 59f9e19 commit 8059d76
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ jobs:
- uses: actions/checkout@v2
- name: Copy env
run: php -r "file_exists('.env.ci') || copy('.env.ci', '.env');"
- name: Cache vendors
uses: actions/cache@v3
with:
path: ./vendor
key: ${{ runner.os }}_8.1_${{ hashFiles('composer.*') }}
restore-keys: |
${{ runner.os }}_8.1_${{ hashFiles('composer.*') }}
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Set Writable Directory Permissions
Expand Down

0 comments on commit 8059d76

Please sign in to comment.