This repository has been archived by the owner on May 13, 2024. It is now read-only.
Merge pull request #243 from sanjam-deriv/inputfieldfix #932
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: 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 |