We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82709d7 commit 1b11d02Copy full SHA for 1b11d02
.github/workflows/test.yml
@@ -41,17 +41,22 @@ jobs:
41
- name: Install dependencies
42
run: pnpm i --frozen-lockfile
43
44
- # Set up GitHub Actions caching for Wireit.
45
- - uses: google/wireit@setup-github-actions-caching/v2
+ # Set up GitHub Actions caching for Turborepo
+ - uses: actions/cache@v4
46
+ with:
47
+ path: .turbo
48
+ key: ${{ runner.os }}-turbo-${{ github.sha }}
49
+ restore-keys: |
50
+ ${{ runner.os }}-turbo-
51
52
- name: Build
- run: pnpm run build
53
+ run: pnpm turbo build
54
55
- name: Lint
- run: pnpm run lint:check
56
+ run: pnpm turbo lint:check
57
58
- name: Test
- run: pnpm run test
59
+ run: pnpm turbo test
60
61
todo-to-issue:
62
needs: build-and-test
0 commit comments