Skip to content

Bump the docusaurus group with 4 updates #167

Bump the docusaurus group with 4 updates

Bump the docusaurus group with 4 updates #167

Workflow file for this run

name: Format and Test
on:
pull_request:
branches:
- main
jobs:
format:
name: Format code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- run: npx prettier --check .
test:
name: Test deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Test build website
run: yarn build