chore(deps): Bump webpack from 5.96.1 to 5.105.0 in /userdocs #299
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: Test docs build | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| name: Build docusaurus | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 | |
| with: | |
| node-version: 22 | |
| cache: yarn | |
| cache-dependency-path: 'userdocs/yarn.lock' | |
| - name: Install dependencies | |
| working-directory: ./userdocs | |
| run: yarn install --frozen-lockfile | |
| - name: Build website | |
| working-directory: ./userdocs | |
| run: yarn build |