docs(ENG-286): Add favicon, social preview, and DASMAC link #712
Workflow file for this run
This file contains hidden or 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
| --- | |
| jobs: | |
| build-docs: | |
| name: 'Build docs' | |
| runs-on: 'ubuntu-latest' | |
| steps: | |
| - uses: 'actions/checkout@v6' | |
| - uses: 'actions/setup-node@v6' | |
| with: | |
| cache: 'npm' | |
| cache-dependency-path: 'docs/package-lock.json' | |
| node-version: 24 | |
| - run: 'npm ci' | |
| working-directory: 'docs' | |
| - run: 'npm run format:check' | |
| working-directory: 'docs' | |
| - run: 'npm run build' | |
| working-directory: 'docs' | |
| name: 'Build docs' | |
| 'on': | |
| pull_request: null | |
| ... |