-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8359e63
commit a7802dd
Showing
3 changed files
with
11 additions
and
3 deletions.
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 |
---|---|---|
|
@@ -37,6 +37,15 @@ jobs: | |
- name: Lint | ||
run: yarn lint | ||
|
||
- name: Save Code Linting Report JSON | ||
run: yarn lint:report | ||
continue-on-error: true | ||
- name: Annotate Code Linting Results | ||
uses: ataylorme/eslint-annotate-action@v2 | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
report-json: "eslint_report.json" | ||
|
||
- name: Test | ||
run: yarn test --run --coverage | ||
|
||
|
@@ -46,8 +55,5 @@ jobs: | |
with: | ||
vite-config-path: './vite.config.ts' | ||
|
||
- name: 'Post Coverage' | ||
uses: romeovs/[email protected] | ||
|
||
- name: Build | ||
run: yarn build |
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 |
---|---|---|
|
@@ -26,3 +26,4 @@ dist-ssr | |
|
||
coverage/ | ||
.vitest-result.json | ||
eslint_report.json |
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