-
-
Notifications
You must be signed in to change notification settings - Fork 5
44 lines (36 loc) · 1.03 KB
/
test.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
name: Test
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
jobs:
test:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
with:
ref: ${{github.event.pull_request.head.sha || github.sha}}
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- name: Docker Compose Build
run: docker compose up --build -d postgis
- name: Docker API Build
run: docker compose build api
- name: Docker API Lint
run: docker run cloudtak-api:latest sh -c "npm install --include=dev && npm run lint"
- name: Docker API Test
run: docker run --network cloudtak_default
-e "POSTGRES=postgres://docker:docker@postgis:5432/gis"
cloudtak-api:latest npm test
- name: Docker Cleanup
run: docker compose kill