-
Notifications
You must be signed in to change notification settings - Fork 0
118 lines (99 loc) · 2.79 KB
/
ci.yml
File metadata and controls
118 lines (99 loc) · 2.79 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
# Backend CI - Lint, Format, Test
backend:
name: Backend CI
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./backend
services:
postgres:
image: postgres:16-alpine
env:
POSTGRES_DB: pulsar_test
POSTGRES_USER: pulsar
POSTGRES_PASSWORD: pulsar_test_password
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
cache-dependency-path: backend/go.sum
- name: Download dependencies
run: go mod download
- name: Check formatting (gofmt)
run: |
if [ -n "$(gofmt -l .)" ]; then
echo "::error::The following files are not formatted:"
gofmt -l .
echo ""
echo "Run 'gofmt -w .' to fix formatting"
exit 1
fi
- name: Run go vet
run: go vet ./...
- name: Install golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: latest
working-directory: ./backend
args: --timeout=5m
- name: Run staticcheck
uses: dominikh/staticcheck-action@v1
with:
working-directory: ./backend
install-go: false
- name: Run tests
env:
DATABASE_URL: postgres://pulsar:pulsar_test_password@localhost:5432/pulsar_test?sslmode=disable
JWT_SECRET: test_jwt_secret_for_ci_min_32_characters
JWT_REFRESH_SECRET: test_refresh_secret_for_ci_min_32_chars
ENV: test
run: go test -v -race -coverprofile=coverage.out ./...
- name: Upload coverage report
uses: codecov/codecov-action@v4
with:
files: ./backend/coverage.out
flags: backend
fail_ci_if_error: false
# Frontend CI - Lint, Format, Type Check
frontend:
name: Frontend CI
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
run: npm ci
- name: Check formatting (Prettier)
run: npm run format:check
- name: Run ESLint
run: npm run lint
- name: Run type check
run: npm run check