Skip to content

Update dependency pyright to ^1.1.382 #4450

Update dependency pyright to ^1.1.382

Update dependency pyright to ^1.1.382 #4450

Workflow file for this run

name: Spell Check
# There is an official action published by cSpell.
# v1.1.1 was tested but did not function as desired so we are using the CLI.
on:
pull_request: # any pull request
push:
branches:
- master
env:
NODE_VERSION: '20'
jobs:
spell-check:
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4
- name: 🏗 Setup Node
uses: actions/setup-node@v4
with:
cache: npm
node-version: ${{ env.NODE_VERSION }}
- name: ⤵️ Install Node Dependencies
run: make setup-npm
- name: 🚀 Run spellcheck
run: make spellcheck