Skip to content

chore(deps): bump the docusaurus group with 8 updates #54

chore(deps): bump the docusaurus group with 8 updates

chore(deps): bump the docusaurus group with 8 updates #54

Workflow file for this run

name: CI for Pull Requests
on:
pull_request:
branches: [ "master" ]
push:
branches: ["!master"]
jobs:
deploy:
name: Test and build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
name: Clone the repository
with:
fetch-depth: 0
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
name: Install Node.JS
with:
node-version: 20.x
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
name: Install pnpm
with:
version: 9
run_install: false
- name: Get pnpm store directory
shell: bash
run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Setup pnpm cache
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 #
with:
path: ${{env.STORE_PATH}}
key: ${{runner.os}}-pnpm-cache-${{ hashFiles('./pnpm-lock.yaml')}}
restore-keys: ${{runner.os}}-pnpm-cache-
- name: Install dependencies
shell: bash
run: pnpm install --frozen-lockfile
- name: Build website
shell: bash
run: pnpm build