chore(deps): Bump browserslist from 4.28.1 to 4.28.8 in /docs in the npm_and_yarn group across 1 directory #128
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
| name: 'Documentation Build Test' | |
| on: | |
| pull_request: | |
| paths: | |
| - docs/** | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| permissions: | |
| contents: read | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| persist-credentials: false | |
| - name: Use Node.js LTS | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: 'lts/*' | |
| cache: 'npm' | |
| cache-dependency-path: docs/package.json | |
| - name: Install Dependencies | |
| run: | | |
| cd docs | |
| npm ci | |
| - name: build | |
| run: | | |
| cd docs | |
| npm run build |