chore(deps-dev): bump re2 from 1.24.1 to 1.26.1 #333
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: CI (Pull Request) | |
| on: [pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-adev: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| with: | |
| submodules: true | |
| - name: Setup Node JS | |
| uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0 | |
| with: | |
| node-version-file: '.node-version' | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@b307475762933b98ed359c036b0e51f26b63b74b # v5.0.0 | |
| with: | |
| version: 10.17.1 | |
| - name: Setup Bazel | |
| uses: bazel-contrib/setup-bazel@8cb04a772ab4c1eb984e9c1b493a182e96c5e425 # 0.19.0 | |
| with: | |
| bazelisk-cache: true | |
| disk-cache: ${{ github.workflow }} | |
| repository-cache: true | |
| bazelrc: | | |
| # Limit resources for CI runners (ubuntu-latest: 7GB RAM, 2 CPUs) | |
| build --local_resources=memory=4096 | |
| build --local_resources=cpu=2 | |
| build --jobs=1 | |
| build --discard_analysis_cache | |
| build --nokeep_state_after_build | |
| # Allow network access in sandbox for Algolia API calls during SSR prerendering. | |
| build --sandbox_default_allow_network | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Build Docs | |
| run: npm run build | |
| env: | |
| NODE_OPTIONS: --max-old-space-size=4096 |