This repository has been archived by the owner on Sep 22, 2023. It is now read-only.
feat: add SDK sizes #380
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Spell Checker | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
name: Spell Checker | |
runs-on: ubuntu-latest | |
steps: | |
# Git Checkout | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }} | |
fetch-depth: 0 | |
# Setup Node | |
- name: Setup Node 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install spell checker | |
run: npm i -g cspell@^6.31.2 | |
# cspell | |
- name: Run spell checker | |
run: cspell lint -c cspell.json --show-context --no-progress --relative "**/*.md" |