-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Github Action - Generates report.html for Spellchecker #257
Closed
esha0612
wants to merge
41
commits into
timeplus-io:main
from
esha0612:esha0612-UpdatedSpellchecker.yml
Closed
Changes from all commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
79527f0
Update config.yml
esha0612 42b1605
Merge pull request #6 from esha0612/esha0612-updated_config.yml
esha0612 0db9962
Update dic.txt
esha0612 9575b51
Update config.yml
esha0612 aa9ae33
Merge branch 'timeplus-io:main' into main
esha0612 126cf53
Create node.js.yml
esha0612 0a27382
Rename node.js.yml to spellchecker.yml
esha0612 e8ed4c8
Update spellchecker.yml
esha0612 1e2ebc9
Update spellchecker.yml
esha0612 ba7b447
Update spellchecker.yml
esha0612 a5bfd06
Update spellchecker.yml
esha0612 198c311
Update spellchecker.yml
esha0612 1f4c981
Update spellchecker.yml
esha0612 55ef6f7
Update spellchecker.yml
esha0612 6c24bed
Update spellchecker.yml
esha0612 4280e87
Update spellchecker.yml
esha0612 e4e95b5
Update spellchecker.yml
esha0612 3cd714e
Update spellchecker.yml
esha0612 9af576a
Update spellchecker.yml
esha0612 86121d6
Update spellchecker.yml
esha0612 3a3ecd3
Update spellchecker.yml
esha0612 8e82073
Update spellchecker.yml
esha0612 baa52d3
Update spellchecker.yml
esha0612 2243876
Update spellchecker.yml
esha0612 45bb214
Update spellchecker.yml
esha0612 fbe24b1
Update spellchecker.yml
esha0612 146db83
Update spellchecker.yml
esha0612 5529284
Update spellchecker.yml
esha0612 132724b
Update spellchecker.yml
esha0612 feb9622
Update spellchecker.yml
esha0612 c5702e4
Update spellchecker.yml
esha0612 721ad24
Update spellchecker.yml
esha0612 8c67abe
Update spellchecker.yml
esha0612 a1c1106
Update spellchecker.yml
esha0612 3232d7c
Update spellchecker.yml
esha0612 9f02056
Update spellchecker.yml
esha0612 c57ed2d
Update spellchecker.yml
esha0612 470bc5e
Update spellchecker.yml
esha0612 7566f27
Update spellchecker.yml
esha0612 45419c0
Updated Version - spellchecker.yml
esha0612 cbeea1e
Merge branch 'main' into esha0612-UpdatedSpellchecker.yml
esha0612 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
name: Generate Spelling Error Report | ||
|
||
name: Spellchecker Timeplus | ||
|
||
on: | ||
|
@@ -8,6 +10,8 @@ env: | |
jobs: | ||
spellchecker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
steps: | ||
- name: Checkout Code | ||
uses: actions/[email protected] | ||
|
@@ -26,3 +30,15 @@ jobs: | |
|
||
- name: Run spellchecker | ||
run: yarn run spellcheck || true | ||
|
||
- name: Install junit2html | ||
run: pip install junit2html | ||
|
||
- name: Generate HTML Report | ||
run: junit2html spellchecker/report.junit.xml spellchecker/report.html | ||
|
||
- name: Upload HTML Report | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Spellchecker Report | ||
path: spellchecker/report.html |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In package.json, the spellcheck command is
spellchecker --config spellchecker/config.yml && junit2html spellchecker/report.junit.xml spellchecker/report.html
. We need either remove the junit2html in that command, or update this action step. No need to have both