Skip to content

chore: add coverage report #32

chore: add coverage report

chore: add coverage report #32

Workflow file for this run

on:
release:
types: [published]
pull_request:
branches: '**'
paths-ignore:
- '**.md'
push:
branches:
- main
paths-ignore:
- '**.md'
name: my-workflow
jobs:
unit-tests:
name: Code Quality Checks(lint, test, tsc)
runs-on: ubuntu-latest
steps:
# ...
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
# run any `bun` or `bunx` command
- run: bun install
- run: bun lint
- run: bun tsc
- run: bun test
- uses: barecheck/[email protected]
with:
barecheck-github-app-token: ${{ secrets.BARECHECK_GITHUB_APP_TOKEN }}