Skip to content

Serve docs images from R2 instead of committing them to git #13

Serve docs images from R2 instead of committing them to git

Serve docs images from R2 instead of committing them to git #13

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 11.5.2
run_install: false
- name: Install Node.js
uses: actions/setup-node@v6
with:
node-version: 22
cache: "pnpm"
cache-dependency-path: "pnpm-lock.yaml"
- name: Install dependencies
run: pnpm install --frozen-lockfile --prefer-offline
- name: Lint
run: pnpm run lint
- name: Type Check
run: pnpm run types:check
- name: Build
run: pnpm run build