-
Notifications
You must be signed in to change notification settings - Fork 2
57 lines (47 loc) · 1.11 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
name: CI
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
on:
push:
branches:
- main
paths:
- .github/workflows/ci.yml
- sql_scripts/**
- docker/**
- src/**
- package.json
- yarn.lock
pull_request:
branches:
- main
# add manual trigger
workflow_dispatch:
jobs:
continuous-integration-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repo and submodules
uses: actions/checkout@v4
with:
submodules: recursive
# run tests
- run: yarn install
- run: yarn lint
- run: yarn build
- run: yarn test
continuous-integration-docker:
runs-on: ubuntu-latest
steps:
- name: Checkout repo and submodules
uses: actions/checkout@v4
with:
submodules: recursive
# test docker build
- name: Docker pull latest images
working-directory: ./docker
run: docker-compose pull
- name: Docker build
working-directory: ./docker
run: docker-compose -f ./docker-compose.yml -f ./docker-compose.prod.yml build