Skip to content

chore(deps): bump docusaurus-plugin-openapi-docs from 4.5.1 to 4.7.1 #951

chore(deps): bump docusaurus-plugin-openapi-docs from 4.5.1 to 4.7.1

chore(deps): bump docusaurus-plugin-openapi-docs from 4.5.1 to 4.7.1 #951

Workflow file for this run

name: CI
on:
push:
branches: [main, add-actions-workflows]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
test:
name: Test Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up mise
uses: jdx/mise-action@v2
with:
cache: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Check formatting
run: pnpm prettier --check .
- name: Check for incorrect support email
run: |
echo "Checking for usage of support@glean.com..."
if grep -r --exclude-dir=node_modules --exclude-dir=.git --exclude-dir=build --exclude-dir=dist --exclude-dir=.next --exclude="*.lock" --exclude="pnpm-lock.yaml" --exclude="ci.yml" "support@glean.com" .; then
echo "Found usage of incorrect email 'support@glean.com'"
echo "Please replace with the correct support email address"
exit 1
else
echo "No usage of support@glean.com found"
fi
- name: Check API sidebar completeness
run: pnpm sidebar:check
- name: Build website
run: pnpm build
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}