Something went wrong. Try again.
the next generation of the in-browser educational proof assistant
Something went wrong. Try again.
511 B · 24 lines
YAML
at main
12345678910111213141516171819202122232425name: Node.js CI
on: [push, pull_request]
jobs: build: runs-on: ubuntu-latest
strategy: matrix: node-version: [22.x, 24.x]
steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: "npm" - run: npm install - run: npm ci - run: npm run res:build - run: npm run build --if-present - run: npm test