chore(deps): update dependency turbo to v2 - autoclosed #4500
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4.1.7 | |
- name: Setup | Node.js | |
uses: re-taro/actions/setup-node@v3.6.0 | |
with: | |
node-version-file: .tool-versions | |
- name: Setup | turborepo cache | |
uses: re-taro/actions/turbo-cache@v3.6.0 | |
- name: Test | Build | |
run: pnpm build | |
lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4.1.7 | |
- name: Setup | Node.js | |
uses: re-taro/actions/setup-node@v3.6.0 | |
with: | |
node-version-file: .tool-versions | |
- name: Setup | turborepo cache | |
uses: re-taro/actions/turbo-cache@v3.6.0 | |
- name: Setup | Build | |
run: pnpm build | |
- name: Test | Lint | |
run: pnpm lint | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4.1.7 | |
- name: Setup | Node.js | |
uses: re-taro/actions/setup-node@v3.6.0 | |
with: | |
node-version-file: .tool-versions | |
- name: Setup | turborepo cache | |
uses: re-taro/actions/turbo-cache@v3.6.0 | |
- name: Setup | Build | |
run: pnpm build | |
- name: Test | Unit | |
run: pnpm test |