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
  •  
  •  
  •  
32 changes: 32 additions & 0 deletions .github/workflows/validate-events.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Validate events

on:
pull_request:
paths:
- "data/events.json"
- "html/events/**"
- "events images/**"
- "package.json"
- "scripts/validate-events.mjs"
- ".github/workflows/validate-events.yml"
push:
paths:
- "data/events.json"
- "html/events/**"
- "events images/**"
- "package.json"
- "scripts/validate-events.mjs"
- ".github/workflows/validate-events.yml"

jobs:
validate-events:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Validate event data
run: npm run validate:events
Loading
Loading