Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/actions/cache-checkout/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ runs:
!.git
!node_modules
!**/node_modules
!apps/web/public/app-store
key: git-checkout-${{ github.head_ref || github.ref_name }}-${{ github.event.pull_request.head.sha || github.sha }}
fail-on-cache-miss: true

Expand All @@ -37,4 +38,5 @@ runs:
!.git
!node_modules
!**/node_modules
!apps/web/public/app-store
key: git-checkout-${{ github.head_ref || github.ref_name }}-${{ github.event.pull_request.head.sha || github.sha }}
5 changes: 5 additions & 0 deletions .github/actions/dangerous-git-checkout/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,8 @@ runs:
/*
!/example-apps/
!**/*.mp4
!/docs/images/
!packages/app-store/*/static/*.png
!packages/app-store/*/static/*.jpg
!packages/app-store/*/static/*.jpeg
!packages/app-store/*/static/*.gif
2 changes: 2 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,8 @@ jobs:
db-cache-hit: ${{ steps.cache-db-check.outputs.cache-hit }}
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: .github
- uses: ./.github/actions/dangerous-git-checkout
- name: Cache git checkout
uses: ./.github/actions/cache-checkout
Expand Down
Loading