fix: remove archives/ directory #31
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: Link Validator | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-and-validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'pnpm' | |
- run: pnpm install | |
- name: Build documentation | |
run: | | |
pnpm docs:build | |
- name: Serve docs and check links | |
run: | | |
pnpm docs:serve & | |
sleep 10 # Wait for the server to start | |
node ./libs/link-validator.js http://localhost:8082 ./docs/.vitepress/dist/ |