PPS-1727 Chore/dep update #326
Workflow file for this run
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
name: CI | |
on: | |
push: | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
frontend_unit_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: Setup and run npm test | |
run: | | |
cd bmh_admin_portal_ui | |
npm ci | |
npm run build --if-present | |
npm test . | |
backend_unit_test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Set up python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.9" | |
- name: Install poetry | |
run: | | |
cd bmh_admin_portal_backend | |
pip --version | |
pip install poetry | |
poetry install -vv | |
- name: Run test | |
run: | | |
cd bmh_admin_portal_backend | |
poetry run pytest -vv --cov-report xml tests | |
lambda_auth_unit_test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Set up python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.9" | |
- name: Install pip requirements | |
run: | | |
cd bmh_admin_portal_backend/lambdas/lambda_authorizer | |
pip --version | |
pip install -r requirements.txt | |
echo "Installing dependencies to run the unit tests" | |
pip install jwcrypto==1.5.6 | |
pip install pytest | |
- name: Run test | |
run: | | |
cd bmh_admin_portal_backend/lambdas/lambda_authorizer | |
pytest -vv tests |