Skip to content

storybook fix

storybook fix #4

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- main
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
# 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%!";
exit 1;
fi