-
Notifications
You must be signed in to change notification settings - Fork 217
86 lines (86 loc) · 2.5 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
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
name: ci
on:
push:
branches:
- master
pull_request:
branches:
- '**'
jobs:
check-pre-check:
name: PreCheck
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install Dependencies
run: npm install
- name: TypeScript Lint
run: npm run tslint
- name: ESLint
run: npm run lint
- name: Spelling Check
run: npm run spelling
check-postgres:
strategy:
matrix:
include:
# Note that we do keep Node v18 here, because v20 changes errors syntax for DB again,
# which requires refactoring corresponding tests again, and for no good reason at all.
- name: PostgreSQL 10, Node 14
POSTGRES_IMAGE: postgres:10
NODE_VERSION: 14
- name: PostgreSQL 10, Node 18
POSTGRES_IMAGE: postgres:10
NODE_VERSION: 18
- name: PostgreSQL 16, Node 14
POSTGRES_IMAGE: postgres:16
NODE_VERSION: 14
- name: PostgreSQL 16, Node 18
POSTGRES_IMAGE: postgres:16
NODE_VERSION: 18
fail-fast: false
name: ${{ matrix.name }}
timeout-minutes: 15
runs-on: ubuntu-latest
services:
postgres:
image: ${{ matrix.POSTGRES_IMAGE }}
env:
POSTGRES_HOST: postgres
POSTGRES_DB: pg_promise_test
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.NODE_VERSION }}
- name: Cache Node.js modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-
- name: Install Dependencies
run: npm install
- name: Initialize Database
run: npm run test:init
- name: Test and Coverage
run: npm run coverage
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true