From 8bd26f2a5afc8897a0fb984a575acf63e323e4a7 Mon Sep 17 00:00:00 2001 From: Rob Dennis Date: Sun, 15 Mar 2026 19:41:07 -0400 Subject: [PATCH 1/2] add unit tests for pull request --- .github/workflows/test.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..6bc8c33 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,23 @@ +name: Unit Tests + +on: + pull_request: + branches: ["main"] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '22' + + - name: Install dependencies + run: npm ci + + - name: Run unit tests + run: npx ng test --watch=false --no-progress --browsers=ChromeHeadless From 869c44ea3359d53a463264d9709b293066043383 Mon Sep 17 00:00:00 2001 From: Rob Dennis Date: Fri, 3 Apr 2026 20:16:37 -0400 Subject: [PATCH 2/2] Pre-monorepo snapshot: uncommitted changes --- .gitignore | 1 + CLAUDE.md | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 70583d7..c5e1b4b 100644 --- a/.gitignore +++ b/.gitignore @@ -40,3 +40,4 @@ testem.log # System files .DS_Store Thumbs.db +default-cards-*.json diff --git a/CLAUDE.md b/CLAUDE.md index aa7cfda..df41487 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -85,3 +85,7 @@ Deploys automatically to GitHub Pages on push to `main` via `.github/workflows/b - Font Awesome 6 (free icons) + Mana Symbol fonts for MTG symbols - TypeScript 5.9 strict mode - SCSS, Prettier (100 char width, single quotes) + +## Public Repo + +This project is publicly hosted at `robdennis/trappist` and synced from the monorepo via git subtree. GitHub Pages deploys automatically on push to `main` (tests must pass first).