Skip to content

fix: optimize svm holders queries (#470) #1722

fix: optimize svm holders queries (#470)

fix: optimize svm holders queries (#470) #1722

Workflow file for this run

name: Test
on: push
jobs:
bun-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
cache: bun
- name: "Install Dependencies"
run: bun install --frozen-lockfile
- name: "Run lint"
run: bun lint
- name: "Set Git date"
run: echo "GIT_DATE=$(git log -1 --format=%cd --date=short)" >> $GITHUB_ENV
- name: "Run test"
run: bun test
env:
GIT_DATE: ${{ env.GIT_DATE }}
GIT_COMMIT: ${{ github.sha }}
GIT_REPOSITORY: ${{ github.repository }}