-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* storybook fix * update test.yml file * cd to angular path in test.yml * temporary remove npm install step * revert * use npmrc secret * use npmrc secret * change working directory before add npmrc * add env * change on step * use pull reqeust target * modify on: * add on pull_request * Use Different Concurrency Groups: * get rid of concurrency temp * use pull request yml to run both jobs * use pull request yml to run both jobs * use pull request yml to run both jobs * use pull request yml to run both jobs * try the on push for test.yml * revert
- Loading branch information
Showing
6 changed files
with
111 additions
and
373 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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Run Tests | ||
|
||
env: | ||
NPMRC: ${{ secrets.NPMRC }} | ||
|
||
on: | ||
pull_request_target: | ||
types: [opened, synchronize, reopened] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [20.x] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Change directory to Angular app | ||
run: cd client/wfprev-war/src/main/angular | ||
|
||
# Use the NPMRC secret to set up npm authentication | ||
- name: Add .npmrc file | ||
run: echo -e $NPMRC > ~/.npmrc | ||
|
||
# Install dependencies | ||
- run: npm install | ||
working-directory: client/wfprev-war/src/main/angular | ||
|
||
# Run unit tests and generate code coverage | ||
- run: npm run test -- --watch=false --code-coverage | ||
|
||
# Ensure coverage meets the required threshold | ||
- name: Check code coverage | ||
run: | | ||
if grep -q '"statements": 8[0-9]' ../../client/wfprev-war/src/main/angular/coverage/wfprev/coverage-summary.json; then | ||
echo "Test passed"; | ||
else | ||
echo "Code coverage is less than 80%! Exiting..."; | ||
exit 1; |
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 |
---|---|---|
|
@@ -41,4 +41,4 @@ Thumbs.db | |
*storybook.log | ||
|
||
# Documentation.json | ||
.documentation.json | ||
documentation.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
Oops, something went wrong.