Skip to content

feat: implement verify and aggregate apis #11

feat: implement verify and aggregate apis

feat: implement verify and aggregate apis #11

Workflow file for this run

name: Main
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
# Check out the repository.
- uses: actions/checkout@v4
# Install Bun.
- name: Install Bun
run: |
curl -fsSL https://bun.sh/install | bash
export PATH="$HOME/.bun/bin:$PATH"
# Append Bun's bin folder to the GitHub Actions PATH.
echo "$HOME/.bun/bin" >> $GITHUB_PATH
bun --version
# (Optional) Install dependencies if you use bun install.
- name: Install Dependencies
run: bun install
# Run unit tests using "bun test:unit"
- name: Run Unit Tests
run: bun test:unit