Bundle output fixes

This commit is contained in:
zomars 2023-02-13 15:13:52 -07:00
parent 0a63820699
commit 93f65807e7
2 changed files with 6 additions and 7 deletions

View File

@ -74,9 +74,7 @@ jobs:
env: env:
cache-name: cache-next-build cache-name: cache-next-build
with: with:
# if you use a custom build directory, replace all instances of `.next` in this file with your build directory path: apps/web/.next/cache
# ex: if your app builds to `dist`, replace `.next` with `dist`
path: .next/cache
# change this if you prefer a more strict cache # change this if you prefer a more strict cache
key: ${{ runner.os }}-build-${{ env.cache-name }} key: ${{ runner.os }}-build-${{ env.cache-name }}
@ -93,7 +91,7 @@ jobs:
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
name: bundle name: bundle
path: .next/analyze/__bundle_analysis.json path: apps/web/.next/analyze/__bundle_analysis.json
- name: Download base branch bundle stats - name: Download base branch bundle stats
uses: dawidd6/action-download-artifact@v2 uses: dawidd6/action-download-artifact@v2
@ -101,7 +99,7 @@ jobs:
with: with:
workflow: nextjs_bundle_analysis.yml workflow: nextjs_bundle_analysis.yml
branch: ${{ github.event.pull_request.base.ref }} branch: ${{ github.event.pull_request.base.ref }}
path: .next/analyze/base path: apps/web/.next/analyze/base
# And here's the second place - this runs after we have both the current and # And here's the second place - this runs after we have both the current and
# base branch bundle stats, and will compare them to determine what changed. # base branch bundle stats, and will compare them to determine what changed.
@ -118,13 +116,13 @@ jobs:
# entry in your package.json file. # entry in your package.json file.
- name: Compare with base branch bundle - name: Compare with base branch bundle
if: success() && github.event.number if: success() && github.event.number
run: ls -laR .next/analyze/base && npx -p nextjs-bundle-analysis compare run: ls -laR apps/web/.next/analyze/base && npx -p nextjs-bundle-analysis compare
- name: Get comment body - name: Get comment body
id: get-comment-body id: get-comment-body
if: success() && github.event.number if: success() && github.event.number
run: | run: |
body=$(cat .next/analyze/__bundle_analysis_comment.txt) body=$(cat apps/web/.next/analyze/__bundle_analysis_comment.txt)
body="${body//'%'/'%25'}" body="${body//'%'/'%25'}"
body="${body//$'\n'/'%0A'}" body="${body//$'\n'/'%0A'}"
body="${body//$'\r'/'%0D'}" body="${body//$'\r'/'%0D'}"

View File

@ -115,6 +115,7 @@
"semverRange": "" "semverRange": ""
}, },
"nextBundleAnalysis": { "nextBundleAnalysis": {
"buildOutputDirectory": "apps/web/.next",
"budget": 358400, "budget": 358400,
"budgetPercentIncreaseRed": 20, "budgetPercentIncreaseRed": 20,
"showDetails": true "showDetails": true