Skip to content

refactor: Remove console.log statement in postCustomer method #2250

refactor: Remove console.log statement in postCustomer method

refactor: Remove console.log statement in postCustomer method #2250

name: "Generate test coverage"
on:
push:
branches:
- "*"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: "Install Node"
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: |
echo //registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }} > .npmrc
yarn
- name: "Generate Coverage"
run: |
yarn coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}