Skip to content

Workflow setup for consistent formatting, linting and spell checking #2

Workflow setup for consistent formatting, linting and spell checking

Workflow setup for consistent formatting, linting and spell checking #2

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
spell-check:
name: Check spelling
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install cspell
run: npm install -g cspell
- name: Run spell check
run: cspell