Skip to content

released v5.0.22

released v5.0.22 #27

Workflow file for this run

on: [push, pull_request]
name: test
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: oven-sh/[email protected]
- name: Clean workspace and run tests
run: |
git clean -xfd # Remove all untracked files, including stale tests
bun install
bun test --coverage --coverage-reporter=lcov
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}