Skip to content
Open
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
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ testem.log
# System files
.DS_Store
Thumbs.db
default-cards-*.json
4 changes: 4 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Loading