Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

feat: update to docusaurs 3.0 #182

feat: update to docusaurs 3.0

feat: update to docusaurs 3.0 #182

Workflow file for this run

name: main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
branches:
- main
jobs:
semantic-pull-request:
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: src/very_good_docs_site
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v4
- name: ⚙️ Setup Node
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: npm
cache-dependency-path: src/very_good_docs_site/package-lock.json
- name: 📦 Install Dependencies
run: npm ci
- name: ✨ Check Format
run: npm run format:check
- name: 🧹 Lint
run: npm run lint
- name: 👷 Build website
run: npm run build