-
Notifications
You must be signed in to change notification settings - Fork 3
56 lines (49 loc) · 1.11 KB
/
ci_backend.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: CI Backend
on:
push:
branches: ["main"]
paths:
- "backend/**"
pull_request:
branches: ["main"]
paths:
- "backend/**"
jobs:
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: backend
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20
cache: npm
- name: Install deps
run: npm ci
- name: Lint
run: npm run lint
if: always()
- name: Type check
run: npm run typecheck
if: always()
- name: Run Test Build
run: npm run build
env:
NODE_ENV: production
PORT: 3333
HOST: 0.0.0.0
LOG_LEVEL: debug
APP_KEY: really-hard-secret-key-to-guess
SESSION_DRIVER: cookie
DB_HOST: localhost
DB_PORT: 5432
DB_USER: postgres
DB_DATABASE: postgres
DB_PASSWORD: postgres
USOS_CONSUMER_KEY: test
USOS_CONSUMER_SECRET: test
if: always()