-
Notifications
You must be signed in to change notification settings - Fork 12
55 lines (44 loc) · 943 Bytes
/
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
name: API CI
on:
push:
branches:
- "main"
- "master"
- "ci"
workflow_dispatch:
# defaults:
# run:
# working-directory: api
jobs:
ci:
runs-on: ubuntu-latest
# Service containers to run with `container-job`
services:
postgres:
# Docker Hub image
image: postgres
env:
POSTGRES_PASSWORD: somethingsecretfortesting
POSTGRES_USER: gram-test
ports:
- 5433:5432
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: "Clean install"
shell: bash
run: npm ci
- name: "Build"
shell: bash
run: npm run build
- name: "Test"
shell: bash
run: npm test
- name: "Lint"
shell: bash
run: npm run lint
# - name: "Snyk"
# shell: bash
# run: npm run snyk