Skip to content

Merge branch 'beta' #825

Merge branch 'beta'

Merge branch 'beta' #825

Workflow file for this run

name: Code Coverage
on:
push:
branches:
- master
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 18
- run: yarn install --frozen-lockfile --non-interactive
- name: Test && Report to Code Climate
uses: paambaati/codeclimate-action@v5.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: yarn test:cover
coverageLocations: "coverage/lcov.info:lcov"
- name: Coveralls
uses: coverallsapp/github-action@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}