Skip to content

Convert 29 em dashes to the punctuation each clause actually wanted #37

Convert 29 em dashes to the punctuation each clause actually wanted

Convert 29 em dashes to the punctuation each clause actually wanted #37

Workflow file for this run

name: Shellgrounds CI & Pack Validator
on:
push:
branches: [ master, main, shellgrounds ]
pull_request:
branches: [ master, main ]
jobs:
test:
name: Unit, Solvability & Differential Tests
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
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint (ESLint)
run: npm run lint
- name: Run Vitest test suite (unit, API handlers, de-branding, fidelity)
run: npm test
- name: Validate all content packs (Machine Solvability Verification)
run: node bin/shellgrounds.js validate --all --json
- name: Build production web bundle
run: npm run build