Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

fix: name change

fix: name change #929

Workflow file for this run

name: Codecov Workflow
on:
pull_request:
branches:
- '**'
push:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: install, bootstrap and make test coverage
run: |
npm ci
npm run build
npm run test
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
directory: ./coverage
fail_ci_if_error: false
files: ./coverage/lcov.info
name: codecov-umbrella
verbose: true