SPB Git

spb/zyquo-cloud-web Public MIT

Zyquo Cloud Web — every cloud model, one beautiful chat, entirely in your browser.

TypeScript 81.9% CSS 8.9% JavaScript 7.5% Shell 1.1% HTML 0.6%
541 B · 32 lines yaml
Raw Blame History
1#2#  ci.yml3#  Zyquo Cloud Web4#5#  Author: Simon-Pierre Boucher6#  Mail: contact@spboucher.ai7#8#  CI: typecheck + lint + production build on every push / PR to main.9#1011name: CI1213on:14  push:15    branches: [main]16  pull_request:17    branches: [main]1819jobs:20  check:21    runs-on: ubuntu-latest22    steps:23      - uses: actions/checkout@v424      - uses: actions/setup-node@v425        with:26          node-version: 2227          cache: npm28      - run: npm ci29      - run: npm run typecheck30      - run: npm run lint31      - run: npm run build32