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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Run tests

on:
pull_request:
branches: [main]
branches:
- 'main'
- 'dev'

jobs:
test:
Expand Down
6 changes: 5 additions & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,15 @@ npm run build # production build → dist/
npm run preview # preview production build locally
```

## Contributing Workflow

Changes should be made on a branch off of `dev`. All new features and development are submitted to the `dev` branch for PR review and staging before merging to `main`. Do not open pull requests to `main`; the existing GitHub Action Tag Scan workflow directed to `main` is allowed behavior, distinct from these instructions.

## CI Workflows

Workflow | Trigger | Purpose
---|---|---
`test.yml` | PR to `main` | Runs `npm test`
`test.yml` | PR to `main` and `dev` | Runs `npm test`
`deploy.yml` | Push to `main`, daily schedule, manual | Builds and deploys to GitHub Pages
`weekly-tag-scan.yml` | Weekly schedule, manual, PR close cleanup | Detects new tags and opens a PR to update `tag-groups.js`
`validate-zenodo.yaml` | Push (paths filter) | Validates `.zenodo.json`
Expand Down