Skip to content

Commit

Permalink
fix(tests): Added Github action to run tests (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 authored Sep 18, 2023
1 parent 89fa2a7 commit 908edf9
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Run tests

on:
push:
pull_request:

jobs:
test:
strategy:
matrix:
node: [16.x, 18.x, 20.x]
os: [ubuntu-20.04]
runs-on: ${{ matrix.os }}
# 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
ports:
- 6379:6379
steps:
- uses: actions/checkout@v4

- name: Start MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: 4.4
mongodb-port: 27017
mongodb-db: wildduck-test

- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: which mongo
- run: npm install
- name: Run tests
run: npm run runtest
env:
APPCONF_dbs_redis: redis://127.0.0.1:6379/1
APPCONF_dbs_mongodb: 'mongodb://127.0.0.1:27017/wildduck-test?authSource=admin'
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"main": "app.js",
"scripts": {
"test": "grunt",
"runtest": "NODE_ENV=test grunt",
"start": "node app.js",
"show": "NODE_CONFIG_ONLY=true node app.js",
"certs": "mkdir -p keys && cd keys && openssl req -x509 -newkey rsa:2048 -nodes -subj \"/C=US/ST=Oregon/L=Portland/O=Company Name/OU=Org/CN=www.example.com\" -keyout private.key -out server.crt -days 365"
Expand Down

0 comments on commit 908edf9

Please sign in to comment.