Skip to content

Bump typescript from 5.2.2 to 5.6.2 #107

Bump typescript from 5.2.2 to 5.6.2

Bump typescript from 5.2.2 to 5.6.2 #107

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