Skip to content

fix: correct unstar endpoint (#9) #87

fix: correct unstar endpoint (#9)

fix: correct unstar endpoint (#9) #87

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
branches:
- main
jobs:
test:
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install Dependencies & Build
run: bun install && bun run build
- name: Run Tests
env:
SUBSONIC_URL: ${{ secrets.SUBSONIC_URL }}
SUBSONIC_USER: ${{ secrets.SUBSONIC_USER }}
SUBSONIC_PASS: ${{ secrets.SUBSONIC_PASS }}
run: bun test --timeout 10000