Skip to content

Merge pull request #24 from olegnn/1.11.0 #85

Merge pull request #24 from olegnn/1.11.0

Merge pull request #24 from olegnn/1.11.0 #85

Workflow file for this run

name: Code Coverage
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: codecov/codecov-action@v3
- name: Install dependencies
run: npm install
- name: Run tests and collect coverage
run: npm test
- name: Upload coverage reports to Codecov
run: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov -t ${CODECOV_TOKEN}