Skip to content
Merged
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
42 changes: 42 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: CI

# Verifies master AFTER a merge. This repo previously ran pr-validation.yml only, so
# the first sign that master was broken was a deploy.
#
# Deliberately NOT merged into pr-validation.yml: that workflow does PR-specific work
# (visual diff against the base branch, screenshots keyed by PR number) which is
# meaningless on master. One file per role only holds when the roles are the same.

on:
push:
branches: [master]
workflow_dispatch:

concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read

jobs:
verify:
name: Verify
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v7

- uses: actions/setup-node@v7
with:
node-version: '22'
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Verify
run: npm run verify

- name: Format check
run: npm run format:check