Skip to content

Implement new config loader #42

Implement new config loader

Implement new config loader #42

Workflow file for this run

name: Docs CI
on:
workflow_call:
push:
branches-ignore:
- master
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run prettier
run: npm run format:docs
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build docs
run: npm run build:docs