fix: links in docs #1142
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Docs | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- 'site/**' | |
- 'yarn.lock' | |
- '**prettier**' | |
jobs: | |
build-site: | |
name: Build Site | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
cache: 'yarn' | |
node-version: 20 | |
- name: Install Node dependencies | |
run: yarn --frozen-lockfile | |
- name: Lint | |
run: yarn prettierbase --check | |
- name: Build | |
run: yarn build:site |