Skip to content

build(deps): bump @docusaurus/plugin-client-redirects from 3.5.2 to 3.6.1 #33

build(deps): bump @docusaurus/plugin-client-redirects from 3.5.2 to 3.6.1

build(deps): bump @docusaurus/plugin-client-redirects from 3.5.2 to 3.6.1 #33

Workflow file for this run

name: PR checks
on:
pull_request:
jobs:
lints:
name: Lints
runs-on: ubuntu-latest
steps:
- name: Check out the source code
uses: actions/checkout@v4
with:
submodules: true
- name: Enable Corepack for Yarn Modern
run: corepack enable
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Check code style with Prettier
run: yarn prettier --check .
- name: Lint with ESLint
run: yarn eslint
- name: Type-check with tsc
run: yarn tsc