Skip to content

Commit

Permalink
Updated Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
NightWalker7558 committed May 12, 2024
1 parent 34a631a commit d20e091
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/RegressionTesting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,28 @@ jobs:
run: |
cd UserAccMgmtServ
npm run testCI
test-ViewGeneratorServ:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '20'

- name: Install dependencies
run: |
cd view_generator_serv
npm install
- name: Run tests
run: |
cd view_generator_serv
npm run testCI


Expand Down
1 change: 1 addition & 0 deletions view_generator_serv/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --transformIgnorePatterns \"node_modules/(?!axios)/\"",
"testCI": "CI=true react-scripts test --transformIgnorePatterns \"node_modules/(?!axios)/\"",
"eject": "react-scripts eject"
},
"eslintConfig": {
Expand Down

0 comments on commit d20e091

Please sign in to comment.