forked from cfpb/consumerfinance.gov
-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (57 loc) · 1.67 KB
/
frontend.yml
File metadata and controls
73 lines (57 loc) · 1.67 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
name: frontend
on: pull_request
jobs:
frontend:
runs-on: ubuntu-latest
strategy:
matrix:
gulp_cmd:
- lint --ci
- test:unit --ci --headless
steps:
- uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.6
- name: Install dependencies
run: |
./frontend.sh development
python -m pip install --upgrade pip
pip install -r requirements/ci.txt
- name: Run ${{ matrix.gulp_cmd }}
run: yarn run gulp ${{ matrix.gulp_cmd }}
- name: Store test coverage
# Submit coverage from the unit test run only
if: matrix.gulp_cmd == 'test:unit --ci --headless'
uses: actions/upload-artifact@v1
with:
name: frontend_coverage
path: ./test/unit_test_coverage/clover.xml
coverage:
runs-on: ubuntu-latest
needs:
- frontend
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.6
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/ci.txt
- name: Retrieve frontend coverage
uses: actions/download-artifact@v1
with:
name: frontend_coverage
- name: Check frontend test coverage
run: |
diff-cover frontend_coverage/clover.xml --compare-branch=origin/main --fail-under=100