-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (43 loc) · 1.03 KB
/
node.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
name: Node.js CI
on: push
env:
NODE_ENV: test
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [20.10.0]
postgres-version: [16.1]
services:
postgres:
image: postgres:${{ matrix.postgres-version }}
ports:
- 5432:5432
env:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: test
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Code Quality Checks
run: |
npm run format:check
npm run lint:check
- name: Execute Tests
run: |
npm test
npm run test:e2e