-
Notifications
You must be signed in to change notification settings - Fork 3
45 lines (36 loc) · 889 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
name: "CI"
on:
push:
paths-ignore:
- 'README.md'
jobs:
ci:
name: Test, Build, and Deploy
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
services:
redis:
image: redis
# Set health checks to wait until redis has started
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
# Maps port 6379 on service container to the host
- 6379:6379
steps:
- name: Checkout repository
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm install
- name: Lint project
run: npm run lint
- name: Run tests
run: npm test