File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [main]
6+ pull_request :
7+ branches : [main]
8+
9+ jobs :
10+ build :
11+ name : Typecheck and build
12+ runs-on : ubuntu-latest
13+
14+ strategy :
15+ matrix :
16+ node-version : [20, 22]
17+
18+ steps :
19+ - name : Checkout
20+ uses : actions/checkout@v4
21+
22+ - name : Set up Node.js ${{ matrix.node-version }}
23+ uses : actions/setup-node@v4
24+ with :
25+ node-version : ${{ matrix.node-version }}
26+ cache : npm
27+
28+ - name : Install dependencies
29+ run : npm ci
30+
31+ - name : Typecheck
32+ run : npm run lint
33+
34+ - name : Build
35+ run : npm run build
Original file line number Diff line number Diff line change 33![ TypeScript] ( https://img.shields.io/badge/TypeScript-5.8-3178c6 )
44![ three.js] ( https://img.shields.io/badge/three.js-r184-000000 )
55![ React 19] ( https://img.shields.io/badge/React-19-61dafb )
6+ [ ![ CI] ( https://github.com/yehudalevy-collab/proofs-of-nine/actions/workflows/ci.yml/badge.svg )] ( https://github.com/yehudalevy-collab/proofs-of-nine/actions/workflows/ci.yml )
67
78The number ** 9** , written by itself in infinite mathematics.
89
You can’t perform that action at this time.
0 commit comments