Skip to content

Commit

Permalink
GitHub Action - Spellcheck (#256)
Browse files Browse the repository at this point in the history
* Update config.yml

* Update dic.txt

* Update config.yml

* Create node.js.yml

* Rename node.js.yml to spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Update spellchecker.yml

* Github Action for Running Spellcheck
  • Loading branch information
esha0612 authored Nov 29, 2024
1 parent 7c66935 commit c305eba
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/spellchecker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Spellchecker Timeplus

on:
workflow_dispatch:
env:
PRINCE_VER: 15.3

jobs:
spellchecker:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4.2.2

- name: Setup Node.js environment
uses: actions/setup-node@v4.1.0
with:
node-version: 18.0

- name: Install Yarn Dependencies
run: yarn install

- name: Install Spellchecker CLI
run: yarn global add spellchecker-cli # Install spellchecker-cli globally


- name: Run spellchecker
run: yarn run spellcheck || true

0 comments on commit c305eba

Please sign in to comment.