Skip to content

Bump @docusaurus/core from 3.2.1 to 3.3.2 #770

Bump @docusaurus/core from 3.2.1 to 3.3.2

Bump @docusaurus/core from 3.2.1 to 3.3.2 #770

Workflow file for this run

name: Linters
on:
pull_request:
types: [opened, synchronize, reopened]
merge_group:
types: [checks_requested]
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
NODE_VERSION: lts/*
permissions:
contents: read
jobs:
yarn-run-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: yarn
env:
SKIP_YARN_COREPACK_CHECK: 1
- name: Environment Information
run: npx envinfo
- name: Install dependencies
run: corepack yarn --immutable
- name: Lint files
run: corepack yarn lint