tested and worked with mongo (fine on existing instance) #123
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Tests | |
on: | |
pull_request: | |
push: { branches: master } | |
jobs: | |
test: | |
name: Run Angles unit/integration tests | |
runs-on: ubuntu-latest | |
env: | |
COMPOSE_FILE: ./test/test-setup/docker-compose.yml | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: "Setup Node.js" | |
uses: "actions/setup-node@v3" | |
with: | |
node-version: 16 | |
- name: "Install docker-compose" | |
run: sudo apt-get update && sudo apt-get install docker-compose-plugin | |
- name: Setup Angles Mongo instance | |
run: docker-compose up -d | |
- name: Install mocha | |
run: npm install mocha | |
- name: Trigger tests | |
run: MONGO_URL='mongodb://angleshq:%[email protected]:27017/angles' npm run test-with-reporter | |
- name: Modify mocha results (due to bug) | |
run: grep -v '{"level":30' test-results.json >> modified-results.json | |
- name: Generate test report | |
uses: dorny/test-reporter@v1 | |
if: success() || failure() | |
with: | |
name: Generate Mocha Tests results | |
path: modified-results.json | |
reporter: mocha-json |