-
-
Notifications
You must be signed in to change notification settings - Fork 37
60 lines (53 loc) · 1.26 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
name: Node CI
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
build:
runs-on: ubuntu-latest
env:
NODE_ENV: test
services:
redis:
image: redislabs/redismod:latest
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
mariadb:
image: mariadb:10.11.5
ports:
- 3306:3306
env:
MARIADB_DATABASE: directus
MARIADB_USER: directus
MARIADB_PASSWORD: password
MARIADB_RANDOM_ROOT_PASSWORD: 1
options: >-
--health-cmd "mysqladmin ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- name: Init MariaDB
run: |
mysql -u directus -ppassword --database=directus --protocol=tcp < config/init.sql
- uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Build
run: |
npm ci
npm run build
- name: Test
run: |
npm run lint
npm run coverage
npm run test:dist
npm run test:portman