Playwright Visual Doc Updates #11745
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 Checker | |
on: | |
pull_request: | |
push: | |
paths: | |
- 'docs/**' | |
workflow_dispatch: | |
env: | |
ALGOLIA_APP_ID: ${{secrets.ALGOLIA_APP_ID}} | |
ALGOLIA_KEY: ${{secrets.ALGOLIA_KEY}} | |
SLACK_LINK: ${{secrets.SLACK_LINK}} | |
GITLAB_TOKEN: ${{secrets.GITLAB_TOKEN}} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install Dependencies | |
run: | | |
npm install | |
- name: Build | |
run: | | |
npm run build | |
- name: Serve Docs | |
working-directory: build | |
run: | | |
python3 -m http.server 8000 & | |
- name: Install Test Dependencies | |
working-directory: tests/sauce-docs-checker | |
run: | | |
npm install | |
- name: Check Links | |
working-directory: tests/sauce-docs-checker | |
run: | | |
npm start -- $GITHUB_RUN_ID |