Skip to content

feat: add cspell configuration and CI spell-check #2

feat: add cspell configuration and CI spell-check

feat: add cspell configuration and CI spell-check #2

Workflow file for this run

name: CI
on:
push:
branches: main
pull_request:
branches: '*'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
spell-check:
name: Spell Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
- name: Install dependencies
run: jlpm install
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run spell check
run: jlpm run spell-check
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}