-
-
Notifications
You must be signed in to change notification settings - Fork 751
47 lines (42 loc) · 1.11 KB
/
nodejs.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
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
services:
postgres:
image: postgres:latest
env:
POSTGRES_DB: feathers
POSTGRES_PASSWORD: postgres
POSTGRES_PORT: 5432
POSTGRES_USER: postgres
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm i npm -g
- run: npm install -g codeclimate-test-reporter
- run: npm install
- run: npm test
env:
CI: true
TEST_DB: postgres
- run: |
if [ "$CODECLIMATE_REPO_TOKEN" != "" ]; then
codeclimate-test-reporter < coverage/lcov.info
fi
env:
CODECLIMATE_REPO_TOKEN: ${{ secrets.codeclimate }}