Skip to content

feat: codecov uploading #10

feat: codecov uploading

feat: codecov uploading #10

Workflow file for this run

name: Run tests
on:
push:
branches: ['**']
# pull_request:
# branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
mongodb-version: ['6.0']
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: MongoDB Installation and Start
uses: supercharge/[email protected]
with:
mongodb-version: ${{ matrix.mongodb-version }}
- name: Install dependencies
run: npm i
- name: Run Unit Tests
run: npm run ci
npm i --save-dev jest-junit JEST_JUNIT_CLASSNAME="{filepath}" jest --reporters=jest-junit
- name: Code Coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.PRIVATE_CODECOV_TOKEN }}