-
Notifications
You must be signed in to change notification settings - Fork 35
61 lines (60 loc) · 1.56 KB
/
unit-tests.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
name: Unit Tests
on:
push:
branches:
- master
pull_request:
types:
- opened
- edited
- synchronize
jobs:
unit_tests:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Cache
- uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- uses: actions/cache@v1
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
# Setup
- name: Install snappy dep
run: sudo apt-get install libsnappy-dev
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Set up Nodejs 16
uses: actions/setup-node@v1
with:
node-version: 16
- name: Set up ruby 2.6
uses: ruby/setup-ruby@v1
with:
ruby-version: '2.6'
- name: Install virtualenv
run: pip install virtualenv
- name: Install dependencies
run: make setup
# Run Tests
- name: CloudFormation unit tests
run: make test-cfn
- name: Backend unit tests
run: make test-ci
env:
AWS_DEFAULT_REGION: eu-west-1
- name: Frontend unit tests
run: make test-frontend
- name: Upload unit test coverage reports to Codecov
uses: codecov/codecov-action@v1