Skip to content

Bump cspell from 8.3.2 to 8.6.1 #141

Bump cspell from 8.3.2 to 8.6.1

Bump cspell from 8.3.2 to 8.6.1 #141

Workflow file for this run

name: Spellcheck
on:
push:
branches: [main]
pull_request:
paths:
- '**/*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn config get cacheFolder)" >> "$GITHUB_OUTPUT"
- uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- run: yarn install
name: Install Dependencies
- name: Spellcheck
run: |
yarn spellcheck