-
-
Notifications
You must be signed in to change notification settings - Fork 4
79 lines (68 loc) · 1.67 KB
/
ci.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: Check
on:
pull_request:
push:
branches:
- master
jobs:
scan:
name: Secret scan
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: TruffleHog OSS
uses: trufflesecurity/trufflehog@main
with:
extra_args: --debug --only-verified
ci-backend:
name: Backend
runs-on: ubuntu-latest
timeout-minutes: 20
container: golang:1-bookworm
defaults:
run:
working-directory: ./backend
services:
smtp:
image: marlonb/mailcrab:latest
ports:
- 1025:1025
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build
run: go build -buildvcs=false .
- name: Run test & coverage
run: go test -v -coverprofile=coverage.out -covermode=atomic ./...
env:
TZ: UTC
DATABASE_URL: postgres://postgres:password@db:5432/conf?sslmode=disable
SMTP_HOSTNAME: smtp
DB_HOST: db
DB_USER: postgres
DB_PASSWORD: password
DB_NAME: conf
- uses: codecov/codecov-action@v3
ci-frontend:
name: Frontend
runs-on: ubuntu-latest
timeout-minutes: 20
container: node:20.5.1-bookworm
defaults:
run:
working-directory: ./frontend
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build