Skip to content

Bump cspell from 6.31.1 to 6.31.2 #45

Bump cspell from 6.31.1 to 6.31.2

Bump cspell from 6.31.1 to 6.31.2 #45

Workflow file for this run

name: Test a Documentation Change
on:
pull_request:
branches:
- main
jobs:
build:
name: Test by building documentation
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 install
- name: Build website
run: npm run build
spellcheck:
name: Spellcheck the documentation
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm install
- name: Spellcheck
run: npm run spellcheck