Skip to content

docs: add article series cover images #15

docs: add article series cover images

docs: add article series cover images #15

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm nx affected -t lint --base=origin/main
- name: Typecheck
run: pnpm nx affected -t typecheck --base=origin/main
- name: Build
run: pnpm nx affected -t build --base=origin/main
- name: Test
run: pnpm nx affected -t test --base=origin/main