Skip to content

feat(docs): MDX content collection + public sync API #2

feat(docs): MDX content collection + public sync API

feat(docs): MDX content collection + public sync API #2

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
build-and-test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Type check
run: npx astro check
- name: Build
run: npm run build