Skip to content

Commit

Permalink
refactor: switch to turbo for build and lint tasks
Browse files Browse the repository at this point in the history
Replaced pnpm with turbo to optimize build, lint, and test processes in GitHub workflows. This change ensures a more efficient handling of tasks across all packages by leveraging turbo's capabilities. The modification affects both the release and quality workflows.
  • Loading branch information
thevuong committed Dec 2, 2024
1 parent f123129 commit d1e50e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
uses: ./.github/setup

- name: Install Packages
run: pnpm run build --filter="./packages/*"
run: turbo run build --filter="./packages/*"

- name: Lint Packages
run: pnpm run lint --filter="./packages/*"
run: turbo run lint --filter="./packages/*"

- name: Test Packages
run: pnpm run test --filter="./packages/*"
run: turbo run test --filter="./packages/*"
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: changesets/action@v1
with:
version: pnpm run changeset:version
publish: pnpm run build --filter=\"./packages/*\" && pnpm run changeset:publish
publish: turbo run build --filter="./packages/*" && changeset publish
title: 'chore(release): version packages'
commit: 'chore(release): version packages'
env:
Expand Down

0 comments on commit d1e50e5

Please sign in to comment.