2022-07-05 17:04:18 +08:00
|
|
|
name: Run tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
2022-07-05 17:20:35 +08:00
|
|
|
test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
node: [16.x]
|
|
|
|
os: [ubuntu-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
2022-07-05 17:18:29 +08:00
|
|
|
# Service containers to run with `container-job`
|
|
|
|
services:
|
|
|
|
# Label used to access the service container
|
|
|
|
redis:
|
|
|
|
# Docker Hub image
|
|
|
|
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
|
|
|
|
|
|
|
|
mongo:
|
|
|
|
image: mongo
|
|
|
|
env:
|
|
|
|
MONGO_INITDB_ROOT_USERNAME: wildduck
|
|
|
|
MONGO_INITDB_ROOT_PASSWORD: wildduck
|
|
|
|
MONGO_INITDB_DATABASE: wildduck-test
|
|
|
|
options: >-
|
|
|
|
--health-cmd mongo
|
|
|
|
--health-interval 10s
|
|
|
|
--health-timeout 5s
|
|
|
|
--health-retries 5
|
|
|
|
ports:
|
|
|
|
- 27017:27017
|
2022-07-05 17:04:18 +08:00
|
|
|
steps:
|
2022-07-05 17:20:35 +08:00
|
|
|
- uses: actions/checkout@v2
|
2022-07-05 17:04:18 +08:00
|
|
|
- name: Use Node.js ${{ matrix.node }}
|
|
|
|
uses: actions/setup-node@v1
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node }}
|
|
|
|
- run: npm install
|
2022-07-05 17:18:29 +08:00
|
|
|
- name: Run tests
|
2022-07-05 17:27:00 +08:00
|
|
|
run: npm run runtest
|
2022-07-05 17:18:29 +08:00
|
|
|
env:
|
2022-07-05 17:30:02 +08:00
|
|
|
APPCONF_dbs_redis: redis://127.0.0.1:6379/1
|
|
|
|
APPCONF_dbs_mongodb: mongodb://wildduck:wildduck@127.0.0.1:27017/wildduck-test
|