Skip to content
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
7 changes: 5 additions & 2 deletions .github/workflows/eleventy_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,17 @@ jobs:
- name: Checkout
uses: actions/checkout@v6

- name: Setup pnpm
uses: pnpm/action-setup@v4

- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: '25.9.0'
cache: 'pnpm'

- name: Install pnpm
- name: Install dependencies
run: |
npm install -g pnpm
echo "//npm.fontawesome.com/:_authToken=${FONT_AWESOME_TOKEN}" >> .npmrc
pnpm install --ignore-scripts
env:
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@ notes.txt
.cache
hint-history
Resume_2025.pdf
docs/workbox-v*/
# Build output - generated by `pnpm run build` and deployed to the gh-pages
# branch by CI; never committed to main.
docs/
11 changes: 6 additions & 5 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co

## Project Overview

Portfolio website for Adam Jolicoeur (adamjolicoeur.com) built with Eleventy (11ty) static site generator. The site showcases UX/UI design work, development projects, and professional content. Deployed to GitHub Pages from the `docs/` directory.
Portfolio website for Adam Jolicoeur (adamjolicoeur.com) built with Eleventy (11ty) static site generator. The site showcases UX/UI design work, development projects, and professional content. CI builds the site into `docs/` and pushes that output to the `gh-pages` branch, which is what GitHub Pages serves — `docs/` itself is gitignored and never committed to `main`.

**Current Version**: 11.4.1
**Repository**: https://github.com/AdamJ/adamj.github.io
Expand Down Expand Up @@ -84,8 +84,8 @@ src/ # Source files (EDIT HERE)
│ └── *.scss # Component partials
└── js/ # JavaScript files (vanilla JS)

docs/ # Generated output (DO NOT EDIT)
└── [build artifacts] # 20-30MB, auto-generated
docs/ # Generated output (DO NOT EDIT, gitignored)
└── [build artifacts] # 20-30MB, auto-generated, not committed to main

scripts/
└── image-optimizer.js # Sharp-based image processor
Expand Down Expand Up @@ -232,12 +232,13 @@ To add new container types: add `md.use(markdownItContainer, 'name', { render...
**GitHub Actions** (`.github/workflows/eleventy_build.yml`):
1. **Trigger**: Push to `main` branch
2. **Node.js**: v25.x
3. **Steps**:
3. **pnpm version**: Pinned via the `packageManager` field in `package.json` and installed with `pnpm/action-setup` — keep this in sync with the version used to generate `pnpm-lock.yaml` locally, or CI's frozen-lockfile install will fail with `ERR_PNPM_LOCKFILE_CONFIG_MISMATCH`
4. **Steps**:
- Checkout code
- `pnpm install` (with Font Awesome token)
- `pnpm run build`
- Deploy `docs/` to `gh-pages` branch
4. **Live Site**: Auto-deploys to GitHub Pages
5. **Live Site**: Auto-deploys to GitHub Pages

**Cloudflare**: Creates pull request previews

Expand Down
72 changes: 0 additions & 72 deletions docs/404.html

This file was deleted.

1 change: 0 additions & 1 deletion docs/CNAME

This file was deleted.

5 changes: 0 additions & 5 deletions docs/_headers

This file was deleted.

182 changes: 0 additions & 182 deletions docs/about/adam/index.html

This file was deleted.

Loading
Loading