-
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.
* no message * feat(fe): - First draft of the FE without JSON schema * feat(fe): - Draft of the FE without JSON schema #2 * feat(fe/be): - Draft of the FE without JSON schema #3 - Changed data model * feat(fe/be): - Draft of the FE without JSON schema #4 * feat(fe/be): - Draft of the FE without JSON schema #5 * feat(fe/be): - Draft of the FE without JSON schema #5 - Completed Autocomplete - Renamed some files * feat(fe/be): - Draft of the FE without JSON schema #6 * fix(fe/be): - Fixed some issues in the SQL scripts and the unit test * feat(fe/be): - Draft of the FE without JSON schema #7 - Added missing validation components * Dropped example * fix(fe): - Fixed some issues in the unit test * feat(fe): - Draft of the FE without JSON schema #8 - Improved code and made code reviews * fix: fixing tests * feat(fe): - Cleaned up code - Improved code and made code reviews * feat(fe): - Cleaned up code - Improved code and made code reviews - Changed some names as per naming conventions * no message * feat(be): - Dropped and added some columns * Fixed typo * feat(fe): - Added missing logic to add the incorporation number * fix(be): - Fixed unit tests after recent changes * fix: adding missing field to the database * feat(fe): - Aligned id names to dto keys for validations practicity * feat(fe): - Added the vue mask library * feat(fe): - Removed unneeded column - Added responsiveness in the table - Beautified code * fix(fe): - Fixed some issues in the unit test * fix(fe): - Fixed some issues in the unit test --------- Co-authored-by: Paulo Gomes da Cruz Junior <[email protected]>
- Loading branch information
Paulo Gomes da Cruz Junior
committed
Mar 16, 2023
1 parent
55d65db
commit 29d730e
Showing
77 changed files
with
1,289 additions
and
2,129 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
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 |
---|---|---|
|
@@ -36,6 +36,40 @@ jobs: | |
-Dsonar.organization=bcgov-sonarcloud | ||
-Dsonar.projectKey=forest-client-backend | ||
sonar_project_token: ${{ secrets.SONAR_TOKEN_BACKEND }} | ||
- name: Archive CycloneDX | ||
continue-on-error: true | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: cyclone-backend | ||
path: target/bom.json | ||
retention-days: 5 | ||
|
||
- name: Use Checkstyle report | ||
continue-on-error: true | ||
uses: jwgmeligmeyling/checkstyle-github-action@master | ||
with: | ||
path: 'backend/**/checkstyle-result.xml' | ||
|
||
- name: Publish Test Report | ||
uses: mikepenz/action-junit-report@v3 | ||
continue-on-error: true | ||
if: success() || failure() # always run even if the previous step fails | ||
with: | ||
report_paths: 'backend/target/**/TEST-*.xml' | ||
commit: ${{ github.event.pull_request.head.sha }} | ||
summary: Pull Request Tests Backend | ||
detailed_summary: true | ||
job_name: Backend Tests | ||
|
||
- name: Add coverage to PR | ||
id: jacoco | ||
continue-on-error: true | ||
uses: madrapps/[email protected] | ||
with: | ||
paths: backend/target/coverage-reports/merged-test-report/jacoco.xml | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
min-coverage-overall: 75 | ||
min-coverage-changed-files: 75 | ||
|
||
tests-legacy: | ||
name: Legacy Unit Tests | ||
|
@@ -54,6 +88,40 @@ jobs: | |
-Dsonar.organization=bcgov-sonarcloud | ||
-Dsonar.projectKey=forest-client-legacy | ||
sonar_project_token: ${{ secrets.SONAR_TOKEN_LEGACY }} | ||
- name: Archive CycloneDX | ||
continue-on-error: true | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: cyclone-legacy | ||
path: target/bom.json | ||
retention-days: 5 | ||
|
||
- name: Use Checkstyle report | ||
continue-on-error: true | ||
uses: jwgmeligmeyling/checkstyle-github-action@master | ||
with: | ||
path: 'legacy/**/checkstyle-result.xml' | ||
|
||
- name: Publish Test Report | ||
uses: mikepenz/action-junit-report@v3 | ||
continue-on-error: true | ||
if: success() || failure() # always run even if the previous step fails | ||
with: | ||
report_paths: 'legacy/target/**/TEST-*.xml' | ||
commit: ${{ github.event.pull_request.head.sha }} | ||
summary: Pull Request Tests Legacy | ||
detailed_summary: true | ||
job_name: Legacy Tests | ||
|
||
- name: Add coverage to PR | ||
id: jacoco | ||
continue-on-error: true | ||
uses: madrapps/[email protected] | ||
with: | ||
paths: legacy/target/coverage-reports/merged-test-report/jacoco.xml | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
min-coverage-overall: 75 | ||
min-coverage-changed-files: 75 | ||
|
||
tests-frontend: | ||
name: Frontend Unit Tests | ||
|
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 |
---|---|---|
|
@@ -118,6 +118,9 @@ snyk.sarif | |
# Dist | ||
**/dist/** | ||
|
||
# IntelliJ | ||
.idea/** | ||
**/*.iml | ||
|
||
### Eclipse ### | ||
backend/.metadata | ||
|
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
95 changes: 0 additions & 95 deletions
95
backend/src/main/java/ca/bc/gov/app/configuration/RouteConfiguration.java
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.