Convert 29 em dashes to the punctuation each clause actually wanted #37
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |