Skip to content

Content: Document scope of 'Code Font' pref #104

Content: Document scope of 'Code Font' pref

Content: Document scope of 'Code Font' pref #104

Workflow file for this run

name: Validate
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
validate:
name: Run ${{ matrix.command }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
command: [check-types, lint, test]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: "yarn"
- name: Initialize Repository
run: |
sh ./scripts/initialize.sh
- name: Run ${{ matrix.command }}
run: yarn ${{ matrix.command }}
test-builds:
name: Test Builds
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
app:
- docs:
command: "yarn run docs:generate"
path: "./apps/docs"
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 24
cache: "yarn"
- name: Initialize Repository
run: |
yarn run init
- name: Build ${{ matrix.app }}
working-directory: ${{ matrix.app.path }}
run: ${{ matrix.app.command }}