-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (39 loc) · 988 Bytes
/
ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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