Skip to content

chore: add cspell to project #377

chore: add cspell to project

chore: add cspell to project #377

Workflow file for this run

name: Pull Request Validation
on:
pull_request:
permissions:
checks: write
pull-requests: write
env:
HUSKY: 0
CI: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint && npm run typecheck
- name: Spelling
run: npm run lint:spelling