Files
mathmax/.github/workflows/ci.yml
T
tiennm99 7b75a72a16 feat: initial scaffold
- SvelteKit 2 + Svelte 5 + Tailwind 3 (JS only, paths.base=/mathmax)
- Vietnamese landing page: hero + scope (lớp 6-9) + 3 topic cards (Số học, Đại số, Hình học) all "Sắp ra mắt"
- GitHub Actions: CI (build) on PR + deploy to Pages on main
- Apache-2.0 LICENSE, README, RUNBOOK, CHANGELOG
2026-04-30 21:44:43 +07:00

29 lines
537 B
YAML

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '24'
# TODO: add `cache: 'npm'` once package-lock.json is committed.
- name: Install dependencies
# TODO: switch to `npm ci` once package-lock.json is committed.
run: npm install --no-audit --no-fund
- name: Build
run: npm run build