Skip to content

Commit

Permalink
ci/ run tests for merge to master brnach
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali(Ako) Hosseini committed Mar 27, 2022
1 parent 994db57 commit 50362ea
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/codecov_push_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Codecov release Workflow
on:
push:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: install, bootstrap and make test coverage
run: |
npm install
npm run bootstrap
npm run build
npm run test:jest
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
directory: ./coverage
fail_ci_if_error: true
files: ./coverage/lcov.info
name: codecov-umbrella
verbose: true

0 comments on commit 50362ea

Please sign in to comment.