Skip to content

Docs: update system requirements in terms of vulkan #1625

Docs: update system requirements in terms of vulkan

Docs: update system requirements in terms of vulkan #1625

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@v7
- 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@v7
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v6
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