Skip to content

Commit

Permalink
enable turbo run summaries
Browse files Browse the repository at this point in the history
  • Loading branch information
ijjk committed May 15, 2023
1 parent 4ff552e commit e71ffcf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/build_reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:

- run: pnpm build

- run: turbo run build-native-release -- --target x86_64-unknown-linux-gnu
- run: turbo run build-native-release --summarize true -- --target x86_64-unknown-linux-gnu

- run: pnpm playwright install-deps

Expand All @@ -72,3 +72,9 @@ jobs:
- run: rm -rf /tmp/next-repo-*; rm -rf /tmp/next-install-*

- run: /bin/bash -c "${{ inputs.afterBuild }}"

- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: turbo run summary
path: .turbo/runs
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"new-error": "plop error",
"new-test": "plop test",
"clean": "lerna clean -y && lerna bootstrap && lerna run clean && lerna exec 'node ../../scripts/rm.mjs dist'",
"build": "turbo run build",
"build": "turbo run build --summarize true",
"lerna": "lerna",
"dev": "turbo run dev --parallel",
"test-types": "tsc",
Expand Down

0 comments on commit e71ffcf

Please sign in to comment.