-
Notifications
You must be signed in to change notification settings - Fork 0
106 lines (104 loc) · 2.92 KB
/
backend.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
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
name: Ham-Media backend app
on:
push:
paths:
- backend/**
- .github/workflows/backend.yml
- package.json
- pnpm-lock.yaml
jobs:
build:
runs-on: ubuntu-latest
env:
DATABASE_URL: postgresql://postgres:postgres@localhost/ham_media_app_test
DIRECT_URL: postgresql://postgres:postgres@localhost/ham_media_app_test
JWT_TOKEN: test
PORT: 3000
GOOGLE_API_KEY: test
LINE_CHANNEL_ACCESS_TOKEN: test
LINE_CHANNEL_SECRET: test
AWS_BUCKET_NAME: test
NODE_OPTIONS: '--max_old_space_size=4096'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 9.x
run_install: false
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Install dependencies
run: pnpm install
working-directory: ./backend
- name: Generate types from prisma
run: pnpm db:reflect
working-directory: ./backend
- name: Build
run: pnpm build
working-directory: ./backend
test:
permissions:
checks: write
pull-requests: write
contents: write
runs-on: ubuntu-latest
services:
postgres:
image: postgres
ports:
- 5432:5432
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: ham_media_app_test
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
DATABASE_URL: postgresql://postgres:postgres@localhost/ham_media_app_test
DIRECT_URL: postgresql://postgres:postgres@localhost/ham_media_app_test
JWT_TOKEN: test
PORT: 3000
GOOGLE_API_KEY: test
LINE_CHANNEL_ACCESS_TOKEN: test
LINE_CHANNEL_SECRET: test
AWS_BUCKET_NAME: test
NODE_OPTIONS: '--max_old_space_size=4096'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 9.x
run_install: false
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Install dependencies
run: pnpm install
working-directory: ./backend
- name: Setup database
run: pnpm db:push
working-directory: ./backend
- name: Generate types from prisma
run: pnpm db:reflect
working-directory: ./backend
- name: Run tests
run: pnpm test:ci
working-directory: ./backend
- name: Coverage
uses: davelosert/vitest-coverage-report-action@v2
with:
working-directory: ./backend