Skip to content

chore: Ignore unit test coverage in createDbConnection #6033

chore: Ignore unit test coverage in createDbConnection

chore: Ignore unit test coverage in createDbConnection #6033

Workflow file for this run

name: Unit Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.5.x'
- run: npm ci
- run: cp .env-dist .env
- run: npm test
- uses: actions/upload-artifact@v3
if: failure()
with:
name: coverage-report
path: coverage/
retention-days: 30