We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cc6940 commit 6c74881Copy full SHA for 6c74881
1 file changed
.github/workflows/build.yml
@@ -94,6 +94,12 @@ jobs:
94
# We only want to install required production packages
95
run: pnpm install --prod --frozen-lockfile
96
97
+ - name: Install Bundle Analyzer
98
+ if: ${{ matrix.os == 'ubuntu-latest' && github.event_name != 'merge_group' }}
99
+ # This is a devDependency, so we manually install it, but only when it's actually
100
+ # needed
101
+ run: pnpm install @codecov/nextjs-webpack-plugin --frozen-lockfile
102
+
103
- name: Build Next.js (ISR)
104
# We want a ISR build on CI to ensure that regular Next.js builds work as expected.
105
run: pnpm exec turbo build ${{ env.TURBO_ARGS }}
0 commit comments