fix(ci): turbo not found

Signed-off-by: Innei <i@innei.in>
This commit is contained in:
Innei 2024-10-26 17:20:41 +08:00
parent d5be0287ad
commit c812bd71aa
No known key found for this signature in database
GPG Key ID: 0F62D33977F021F7
3 changed files with 5 additions and 5 deletions

View File

@ -106,7 +106,7 @@ jobs:
- name: Build
if: matrix.os != 'macos-latest'
run: turbo run build
run: npm exec turbo run build
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
@ -117,7 +117,7 @@ jobs:
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
KEYCHAIN_PATH: ${{ runner.temp }}/app-signing.keychain-db
run: turbo run build:macos
run: npm exec turbo run build:macos
- name: Upload file
uses: actions/upload-artifact@v4

View File

@ -42,4 +42,4 @@ jobs:
run: pnpm install
- name: Build web and SSR server
run: |
turbo run build:web @follow/server#build
npm exec turbo run build:web @follow/server#build

View File

@ -42,6 +42,6 @@ jobs:
run: pnpm install
- name: Format, Lint and Typecheck
run: |
turbo run format:check typecheck lint
npm exec turbo run format:check typecheck lint
- name: Run test
run: turbo run test
run: npm exec turbo run test