Skip to content
Closed
Changes from all 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
11 changes: 10 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ jobs:
with:
bun-version: 1.3
- run: bun install --frozen-lockfile
- uses: actions/cache@v4
- id: astro-cache
uses: actions/cache/restore@v4
with:
key: ${{ runner.os }}-astro-build
path: |
Expand All @@ -34,6 +35,14 @@ jobs:
node_modules/.astro/assets
restore-keys: ${{ runner.os }}-astro-build
- run: bun run build
- if: github.ref == 'refs/heads/main' && steps.astro-cache.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
with:
key: ${{ runner.os }}-astro-build
path: |
.astro
dist
node_modules/.astro/assets
dirs-small:
name: All dirs must be small (<5MB)
runs-on: ubuntu-latest
Expand Down
Loading