Skip to content

Commit

Permalink
less caching
Browse files Browse the repository at this point in the history
  • Loading branch information
penalosa committed Jan 23, 2025
1 parent 15b69fe commit 4e49208
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ jobs:
uses: actions/cache@v3
id: cache-repo
with:
key: ${{ github.sha }}-${{ matrix.os }}-built-repo
path: .
key: ${{ github.sha }}-${{ matrix.os }}-ci-cache
path: |
node_modules
.turbo
- name: Checkout Repo
if: ${{ steps.cache-repo.outputs.cache-hit != 'true' }}
Expand Down Expand Up @@ -53,8 +55,10 @@ jobs:
uses: actions/cache@v3
id: cache-repo
with:
key: ${{ github.sha }}-${{ matrix.os }}-built-repo
path: .
key: ${{ github.sha }}-${{ matrix.os }}-ci-cache
path: |
node_modules
.turbo
- name: Check for errors
run: pnpm run check
Expand All @@ -80,8 +84,10 @@ jobs:
uses: actions/cache@v3
id: cache-repo
with:
key: ${{ github.sha }}-${{ matrix.os }}-built-repo
path: .
key: ${{ github.sha }}-${{ matrix.os }}-ci-cache
path: |
node_modules
.turbo
- name: Check for errors
run: pnpm run check
Expand Down

0 comments on commit 4e49208

Please sign in to comment.