question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

cspell github action

See original GitHub issue

It would be nice to have the github action that simplifies the usage of cspell on CI.

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Reactions:6
  • Comments:10 (3 by maintainers)

github_iconTop GitHub Comments

3reactions
Jason3Scommented, Jan 29, 2021

cspell-action can be found at: cspell-action · Actions · GitHub Marketplace or https://github.com/streetsidesoftware/cspell-action

Please try it out. Feedback welcome.

3reactions
Jason3Scommented, Apr 29, 2020

A github action is a good idea. It will take a bit of work. In the mean time: lint.yml

name: lint
on: # rebuild any PRs and main branch changes
  pull_request:
  push:

jobs:
  cspell:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - run: npx cspell "**/{*.ts,*.md}"
Read more comments on GitHub >

github_iconTop Results From Across the Web

streetsidesoftware/cspell-action
Github token used to fetch the list of changed files in the commit. · Default: ${{ github.token }} · ' · Define glob...
Read more >
cspell-action - GitHub Marketplace
uses: streetsidesoftware/cspell-action@v2 with: # Github token used to fetch the list of changed files in the commit. # Default: ${{ github.token ...
Read more >
zwaldowski/cspell-action
Prefer streetsidesoftware/cspell-action . This action ran cspell to spell-check your code. Unknown words showed up as annotations on GitHub. Inputs.
Read more >
cspell-action/usage.yaml at main · streetsidesoftware ...
# Define glob patterns to filter the files to be checked. Use a new line between patterns to define multiple patterns. # The...
Read more >
Actions · streetsidesoftware/cspell
A Spell Checker for Code! Contribute to streetsidesoftware/cspell development by creating an account on GitHub.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found