Skip to content

2.0 Release Blog

2.0 Release Blog #860

Workflow file for this run

name: Build Website
on:
push:
branches:
- "main"
pull_request:
branches:
- main
jobs:
check-for-pngs:
name: Check for PNGs
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Check for PNGs
run: python ./.github/scripts/check-for-pngs.py
docusaurus-build:
name: Docusaurus Build
runs-on: ubuntu-latest
needs: check-for-pngs
timeout-minutes: 5
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: "yarn"
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Check Formatting
run: yarn prettier --check .
- name: Build Site
run: yarn build