Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,30 @@ jobs:
- name: Check Licenses
run: npm run check-licenses

spell-check:
name: Spell Check
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v5

- name: Setup Node.js
uses: actions/setup-node@v5
with:
cache: 'npm'
node-version: ${{ env.NODE_VERSION }}
registry-url: 'https://npm.pkg.github.com'
scope: '@deepnote'

- name: Install dependencies
run: npm ci --prefer-offline --no-audit
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Run spell check
run: npm run spell-check

audit-prod:
name: Audit - Production
runs-on: ubuntu-latest
Expand Down
61 changes: 61 additions & 0 deletions cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{
"version": "0.2",
"files": [
"src/notebooks/deepnote/**",
"src/kernels/deepnote/**",
"src/platform/errors/deepnoteServerNotFoundError.ts"
],
"ignorePaths": [
"node_modules",
"package-lock.json",
"pnpm-lock.yaml",
"dist",
"out",
"build",
"coverage",
".vscode",
".git",
"*.min.js",
"*.min.css",
"*.map"
],
"language": "en",
"words": [
"blockgroup",
"channeldef",
"dataframe",
"deepnote",
"deepnoteserver",
"dntk",
"dont",
"DONT",
"ename",
"evalue",
"findstr",
"getsitepackages",
"IMAGENAME",
"ipykernel",
"ipynb",
"jupyter",
"jupyterlab",
"JVSC",
"millis",
"nbformat",
"numpy",
"pids",
"Pids",
"PYTHONHOME",
"Reselecting",
"taskkill",
"unconfigured",
"Unconfigured",
"unittests",
"vegalite",
"venv",
"venv's",
"Venv",
"venvs",
"vscode"
],
"useGitignore": true
}
Loading
Loading