Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test change bundle #22

Merged
merged 3 commits into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/nextjs_bundle_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

with:
name: bundle
path: .next/analyze/__bundle_analysis.json
path: ./apps/next-app/.next/analyze/__bundle_analysis.json

- name: Download base branch bundle stats
uses: dawidd6/action-download-artifact@v2
Expand All @@ -65,7 +65,7 @@ jobs:
with:
workflow: nextjs_bundle_analysis.yml
branch: ${{ github.event.pull_request.base.ref }}
path: .next/analyze/base
path: ./apps/next-app/.next/analyze/base

- name: Compare with base branch bundle
if: success() && github.event.number
Expand Down
2 changes: 0 additions & 2 deletions apps/next-app/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import Image from "next/image";

import lodash from "lodash";
import styles from "./page.module.css";

export const dynamic = "force-dynamic";
Expand All @@ -20,7 +19,6 @@ export default function Home() {
/>
<ol>
<li>
{Object.keys(lodash)}
Get started by editing <code>app/page.tsx</code>.
</li>
<li>Save and see your changes instantly.</li>
Expand Down
Loading