Skip to content

fix(index.ts): prepend 'http://' to host and port string to ensure co… #13

fix(index.ts): prepend 'http://' to host and port string to ensure co…

fix(index.ts): prepend 'http://' to host and port string to ensure co… #13

Workflow file for this run

name: Run unit tests with coverage
on:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install packages
run: bun install
- name: Run tests
run: bun test
- name: Run tests with coverage
if: success()
run: bun test --coverage