build(deps): bump the dependencies group across 1 directory with 29 updates #3212
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 Building Documentation | |
on: | |
pull_request: | |
branches: [main, brubeck] | |
jobs: | |
deploy: | |
name: Test building documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: npm | |
cache-dependency-path: 'package-lock.json' | |
- name: Install dependencies | |
run: npm run bootstrap | |
- name: Build documentation | |
working-directory: ./docs | |
run: npm ci && npm run build |