Skip to content

Commit

Permalink
Added cSpell command and GitHub action (#1111)
Browse files Browse the repository at this point in the history
* Added cSpell github action
  • Loading branch information
MBudreviciusBentley authored Nov 25, 2024
1 parent 5f087f5 commit e87a941
Show file tree
Hide file tree
Showing 4 changed files with 772 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,21 @@ jobs:
- name: appui-react tests
run: npm run cover
working-directory: ui/appui-react

cspell:
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v2

- name: Configure git
run: |
git config --local user.email [email protected]
git config --local user.name imodeljs-admin
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 18

- name: Rush cspell
run: node common/scripts/install-run-rush.js cspell
8 changes: 8 additions & 0 deletions common/autoinstallers/rush-cspell/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "rush-cspell",
"version": "1.0.0",
"private": true,
"dependencies": {
"cspell": "^8.16.0"
}
}
Loading

0 comments on commit e87a941

Please sign in to comment.