Skip to content
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
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 Nov 16, 2024
42b1605
Merge pull request #6 from esha0612/esha0612-updated_config.yml
esha0612 Nov 16, 2024
0db9962
Update dic.txt
esha0612 Nov 16, 2024
9575b51
Update config.yml
esha0612 Nov 16, 2024
aa9ae33
Merge branch 'timeplus-io:main' into main
esha0612 Nov 18, 2024
126cf53
Create node.js.yml
esha0612 Nov 18, 2024
0a27382
Rename node.js.yml to spellchecker.yml
esha0612 Nov 18, 2024
e8ed4c8
Update spellchecker.yml
esha0612 Nov 18, 2024
1e2ebc9
Update spellchecker.yml
esha0612 Nov 18, 2024
ba7b447
Update spellchecker.yml
esha0612 Nov 18, 2024
a5bfd06
Update spellchecker.yml
esha0612 Nov 18, 2024
198c311
Update spellchecker.yml
esha0612 Nov 18, 2024
1f4c981
Update spellchecker.yml
esha0612 Nov 18, 2024
55ef6f7
Update spellchecker.yml
esha0612 Nov 29, 2024
6c24bed
Update spellchecker.yml
esha0612 Nov 29, 2024
4280e87
Update spellchecker.yml
esha0612 Nov 29, 2024
e4e95b5
Update spellchecker.yml
esha0612 Nov 29, 2024
3cd714e
Update spellchecker.yml
esha0612 Nov 29, 2024
9af576a
Update spellchecker.yml
esha0612 Nov 29, 2024
86121d6
Update spellchecker.yml
esha0612 Nov 29, 2024
3a3ecd3
Update spellchecker.yml
esha0612 Nov 29, 2024
8e82073
Update spellchecker.yml
esha0612 Nov 29, 2024
baa52d3
Update spellchecker.yml
esha0612 Nov 29, 2024
2243876
Update spellchecker.yml
esha0612 Nov 29, 2024
45bb214
Update spellchecker.yml
esha0612 Nov 29, 2024
fbe24b1
Update spellchecker.yml
esha0612 Nov 29, 2024
146db83
Update spellchecker.yml
esha0612 Nov 29, 2024
5529284
Update spellchecker.yml
esha0612 Nov 29, 2024
132724b
Update spellchecker.yml
esha0612 Nov 29, 2024
feb9622
Update spellchecker.yml
esha0612 Nov 29, 2024
c5702e4
Update spellchecker.yml
esha0612 Nov 29, 2024
721ad24
Update spellchecker.yml
esha0612 Nov 29, 2024
8c67abe
Update spellchecker.yml
esha0612 Nov 29, 2024
a1c1106
Update spellchecker.yml
esha0612 Nov 29, 2024
3232d7c
Update spellchecker.yml
esha0612 Nov 29, 2024
9f02056
Update spellchecker.yml
esha0612 Nov 29, 2024
c57ed2d
Update spellchecker.yml
esha0612 Nov 29, 2024
470bc5e
Update spellchecker.yml
esha0612 Nov 29, 2024
7566f27
Update spellchecker.yml
esha0612 Nov 29, 2024
45419c0
Updated Version - spellchecker.yml
esha0612 Nov 29, 2024
cbeea1e
Merge branch 'main' into esha0612-UpdatedSpellchecker.yml
esha0612 Nov 29, 2024
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
16 changes: 16 additions & 0 deletions .github/workflows/spellchecker.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: Generate Spelling Error Report

name: Spellchecker Timeplus

on:
Expand All @@ -8,6 +10,8 @@ env:
jobs:
spellchecker:
runs-on: ubuntu-latest
steps:

steps:
- name: Checkout Code
uses: actions/[email protected]
Expand All @@ -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
Copy link
Contributor

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


- name: Upload HTML Report
uses: actions/upload-artifact@v4
with:
name: Spellchecker Report
path: spellchecker/report.html