Skip to content

ci — issue-80-round-trip #124

ci — issue-80-round-trip

ci — issue-80-round-trip #124

Workflow file for this run

name: ci
run-name: ci — ${{ github.head_ref || github.ref_name }}
on:
push:
branches: [main]
pull_request:
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test
- name: Prose lint (sentences)
run: npm run lint:prose
docs-build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '24'
- uses: peaceiris/actions-hugo@v3
with:
hugo-version: '0.162.1'
extended: true
- run: npm run docs:build