Skip to content

Bump @docusaurus/types from 3.6.1 to 3.6.3 #295

Bump @docusaurus/types from 3.6.1 to 3.6.3

Bump @docusaurus/types from 3.6.1 to 3.6.3 #295

Workflow file for this run

name: build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint files
run: yarn run lint
- name: Build library and website
run: yarn run build
- name: Run unit tests
run: yarn test