Skip to content

Expand screenshot alt text #29

Expand screenshot alt text

Expand screenshot alt text #29

Workflow file for this run

name: CI via GitHub Actions
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
my-job:
name: Test + Test Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
- run: bun install
- run: bun test --coverage
- run: if [ $? -eq 1 ]; then echo "Coverage failed"; fi