build(deps): bump brace-expansion from 1.1.16 to 1.1.18 in /website #368
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: GitHub Pages Test | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| defaults: | |
| run: | |
| working-directory: ./website | |
| jobs: | |
| build: | |
| name: Build Docusaurus | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version: 24 | |
| cache: yarn | |
| - name: Install prettier-plugin-java dependencies | |
| working-directory: . | |
| run: yarn install --frozen-lockfile | |
| - name: Build prettier-plugin-java | |
| working-directory: . | |
| run: yarn build | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Type check website | |
| run: yarn typecheck | |
| - name: Test build website | |
| run: yarn build |