-
Notifications
You must be signed in to change notification settings - Fork 15
57 lines (53 loc) · 1.36 KB
/
pull_request.yml
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
name: pull request checks
on:
pull_request:
branches: ['*']
jobs:
build-test-backend:
name: Build, lint, test backend
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.22']
steps:
- name: install make
run: sudo apt-get install make
- name: set up go 1.x
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: checkout
uses: actions/checkout@v3
- name: build, lint, test
run: make backend && git diff --exit-code
- name: check clean vendors
run: go mod vendor
- name: Report coverage
if: ${{ matrix.go == '1.22' }}
uses: codecov/codecov-action@v4
with:
files: ./cover.out
flags: unittests
fail_ci_if_error: false
verbose: true
build-test-frontend:
name: Build, lint, test frontend
runs-on: ubuntu-latest
steps:
- name: install make
run: sudo apt-get install make
- name: set up node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: checkout
uses: actions/checkout@v3
- name: build and test
run: make frontend && git diff --exit-code
- name: Report coverage
uses: codecov/codecov-action@v4
with:
files: ./web/coverage/cobertura-coverage.xml
flags: uitests
fail_ci_if_error: false
verbose: true