Skip to content

Commit

Permalink
build: cache workflow output (#926)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yonom authored Sep 29, 2024
1 parent bc9624e commit bca7b2d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/changeset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'

- name: Cache turbo build setup
uses: actions/cache@v4
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-
- run: corepack enable
- name: install dependencies
Expand Down

0 comments on commit bca7b2d

Please sign in to comment.