From 8685340d709f9d4c8272fea80451ce7fbeb9c3fb Mon Sep 17 00:00:00 2001 From: Aaron Yarborough Date: Sun, 9 Mar 2025 18:50:53 +0000 Subject: [PATCH] Swap to static file export (#2) * feat: export as static files * chore: remove tests --- .github/workflows/build-and-test.yml | 41 +++++++++++++ .github/workflows/docker-image.yml | 63 -------------------- __test__/components/Article.test.jsx | 46 --------------- __test__/components/ExsternalLink.test.jsx | 28 --------- __test__/components/Footer.test.jsx | 10 ---- __test__/components/Grid.test.jsx | 16 ----- __test__/components/Header.test.jsx | 19 ------ __test__/components/Resume.test.jsx | 63 -------------------- __test__/layouts/DefaultLayout.test.jsx | 29 --------- __test__/pages/Writing.test.jsx | 69 ---------------------- next.config.mjs | 2 +- package.json | 2 +- public/sitemap-0.xml | 15 ++--- 13 files changed, 51 insertions(+), 352 deletions(-) create mode 100644 .github/workflows/build-and-test.yml delete mode 100644 .github/workflows/docker-image.yml delete mode 100644 __test__/components/Article.test.jsx delete mode 100644 __test__/components/ExsternalLink.test.jsx delete mode 100644 __test__/components/Footer.test.jsx delete mode 100644 __test__/components/Grid.test.jsx delete mode 100644 __test__/components/Header.test.jsx delete mode 100644 __test__/components/Resume.test.jsx delete mode 100644 __test__/layouts/DefaultLayout.test.jsx delete mode 100644 __test__/pages/Writing.test.jsx diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml new file mode 100644 index 0000000..4ef8272 --- /dev/null +++ b/.github/workflows/build-and-test.yml @@ -0,0 +1,41 @@ +name: Build and Test Next.js site + +on: + push: + branches: [ main ] + pull_request: + branches: [ '*' ] # Wildcard matches all branches + + workflow_dispatch: + +jobs: + build-and-test: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: '23' + cache: 'npm' + + - name: Install dependencies + run: npm ci + + - name: Build + run: npm run build + + - name: Test + run: npm run test + + - name: Cache Next.js build + uses: actions/cache@v3 + with: + path: | + ~/.npm + .next/cache + key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }} + restore-keys: | + ${{ runner.os }}-nextjs- \ No newline at end of file diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml deleted file mode 100644 index 374d20c..0000000 --- a/.github/workflows/docker-image.yml +++ /dev/null @@ -1,63 +0,0 @@ - -name: Create and publish a Docker image - -# Configures this workflow to run every time a change is pushed to the branch called `release`. -on: - push: - branches: ['main'] - -# Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds. -env: - REGISTRY: ghcr.io - IMAGE_NAME: ${{ github.repository }} - -# There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu. -jobs: - build-and-push-image: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - attestations: write - id-token: write - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Log in to the Container registry - uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 - with: - registry: ${{ env.REGISTRY }} - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Extract metadata (tags, labels) for Docker - id: meta - uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 - with: - images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Build and push Docker image - id: push - uses: docker/build-push-action@v6 - with: - context: . - platforms: linux/amd64,linux/arm64 - push: true - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} - - - name: Generate artifact attestation - uses: actions/attest-build-provenance@v1 - with: - subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}} - subject-digest: ${{ steps.push.outputs.digest }} - push-to-registry: true - diff --git a/__test__/components/Article.test.jsx b/__test__/components/Article.test.jsx deleted file mode 100644 index a8ba778..0000000 --- a/__test__/components/Article.test.jsx +++ /dev/null @@ -1,46 +0,0 @@ -/* eslint-env jest */ -import { render } from '@testing-library/react' -import Article from '../../src/components/Article/Article' -import '@testing-library/jest-dom' -import { formatDate } from '@/lib/helpers' - -describe('Article', () => { - it('renders title', () => { - const props = generateArticleProps() - const { getByText } = render(
) - const titleElement = getByText(props.attributes.title) - expect(titleElement).toBeInTheDocument() - }) - - it('renders description', () => { - const props = generateArticleProps() - const { getByText } = render(
) - const descriptionElement = getByText(props.attributes.desc) - expect(descriptionElement).toBeInTheDocument() - }) - - it('renders pubdate if available', () => { - const props = generateArticleProps() - const { getByText } = render(
) - const pubdateElement = getByText(formatDate(props.attributes.pubdate)) - expect(pubdateElement).toBeInTheDocument() - }) - - it('renders content', () => { - const props = generateArticleProps() - const { container } = render(
) - const contentElement = container.querySelector('[data-test=content]') - expect(contentElement.innerHTML).toBe(props.html) - }) -}) - -function generateArticleProps () { - return { - attributes: { - title: 'My title', - desc: 'My description', - pubdate: new Date().toUTCString() - }, - html: '

This is my content!

' - } -} diff --git a/__test__/components/ExsternalLink.test.jsx b/__test__/components/ExsternalLink.test.jsx deleted file mode 100644 index 506d457..0000000 --- a/__test__/components/ExsternalLink.test.jsx +++ /dev/null @@ -1,28 +0,0 @@ -/* eslint-env jest */ -import { render, screen } from '@testing-library/react' -import ExternalLink from '../../src/components/ExternalLink/ExternalLink' -import '@testing-library/jest-dom' - -describe('ExternalLink', () => { - const props = { - href: 'https://example.com', - children: 'Test Link' - } - - it('renders without crashing', () => { - render() - }) - - it('renders correct href and rel attributes', () => { - render() - const link = screen.getByText(props.children) - expect(link).toHaveAttribute('href', props.href) - expect(link).toHaveAttribute('rel', 'nofollow noopener') - expect(link).toHaveAttribute('target', '_blank') - }) - - it('renders children correctly', () => { - render() - expect(screen.getByText(props.children)).toBeInTheDocument() - }) -}) diff --git a/__test__/components/Footer.test.jsx b/__test__/components/Footer.test.jsx deleted file mode 100644 index b6882e6..0000000 --- a/__test__/components/Footer.test.jsx +++ /dev/null @@ -1,10 +0,0 @@ -/* eslint-env jest */ -import { render } from '@testing-library/react' -import '@testing-library/jest-dom' -import Footer from '@/components/Footer/Footer' - -describe('Footer', () => { - it('renders without crashing', () => { - render(