Skip to content

Move userguide info to FAQ page and restyle about page to be consistent with other pages #91

Move userguide info to FAQ page and restyle about page to be consistent with other pages

Move userguide info to FAQ page and restyle about page to be consistent with other pages #91

Workflow file for this run

name: Tests
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 18
cache: "npm"
- name: Install Dependencies
run: npm ci
- name: Check Formatting
run: npm run format-check