-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from Roopan-Microsoft/PSL-testWorkflow
Psl test workflow
- Loading branch information
Showing
2 changed files
with
109 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Tests | ||
|
||
on: | ||
push: | ||
branches: main | ||
# Trigger on changes in these specific paths | ||
paths: | ||
- 'ClientAdvisor/**' | ||
pull_request: | ||
branches: main | ||
types: | ||
- opened | ||
- ready_for_review | ||
- reopened | ||
- synchronize | ||
paths: | ||
- 'ClientAdvisor/**' | ||
|
||
jobs: | ||
test_client_advisor: | ||
|
||
name: Client Advisor Tests | ||
runs-on: ubuntu-latest | ||
# The if condition ensures that this job only runs if changes are in the ClientAdvisor folder | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11" | ||
- name: Install Backend Dependencies | ||
run: | | ||
cd ClientAdvisor/App | ||
python -m pip install -r requirements.txt | ||
python -m pip install coverage pytest-cov | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20' | ||
- name: Install Frontend Dependencies | ||
run: | | ||
cd ClientAdvisor/App/frontend | ||
npm install | ||
- name: Run Frontend Tests with Coverage | ||
run: | | ||
cd ClientAdvisor/App/frontend | ||
npm run test -- --coverage | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: client-advisor-frontend-coverage | ||
path: | | ||
ClientAdvisor/App/frontend/coverage/ | ||
ClientAdvisor/App/frontend/coverage/lcov-report/ |
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,54 @@ | ||
name: Tests | ||
|
||
on: | ||
push: | ||
branches: main | ||
# Trigger on changes in these specific paths | ||
paths: | ||
- 'ResearchAssistant/**' | ||
pull_request: | ||
branches: main | ||
types: | ||
- opened | ||
- ready_for_review | ||
- reopened | ||
- synchronize | ||
paths: | ||
- 'ResearchAssistant/**' | ||
|
||
jobs: | ||
test_research_assistant: | ||
name: Research Assistant Tests | ||
runs-on: ubuntu-latest | ||
# The if condition ensures that this job only runs if changes are in the ResearchAssistant folder | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11" | ||
- name: Install Backend Dependencies | ||
run: | | ||
cd ResearchAssistant/App | ||
python -m pip install -r requirements.txt | ||
python -m pip install coverage pytest-cov | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20' | ||
- name: Install Frontend Dependencies | ||
run: | | ||
cd ResearchAssistant/App/frontend | ||
npm install | ||
- name: Run Frontend Tests with Coverage | ||
run: | | ||
cd ResearchAssistant/App/frontend | ||
npm run test -- --coverage | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: research-assistant-frontend-coverage | ||
path: | | ||
ResearchAssistant/App/frontend/coverage/ | ||
ResearchAssistant/App/frontend/coverage/lcov-report/ |