fix: optimize svm holders queries (#470) #1722
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} |