-
-
Notifications
You must be signed in to change notification settings - Fork 744
39 lines (39 loc) · 938 Bytes
/
test.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
name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
-
name: Checkout code
uses: actions/checkout@v3
-
name: Install Go
uses: actions/setup-go@v4
with:
go-version: '1.20.x'
-
name: Install node
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: './web/package-lock.json'
-
name: Install dependencies
run: make build-deps-ubuntu
-
name: Build docs (required for tests)
run: make docs
-
name: Build web app (required for tests)
run: make web
-
name: Run tests, formatting, vetting and linting
run: make check
-
name: Run coverage
run: make coverage
-
name: Upload coverage to codecov.io
run: make coverage-upload