Skip to content

Update changelog and package version #62

Update changelog and package version

Update changelog and package version #62

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