mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00

* refactor: remove SourcedTrack based audio player and utilize mediakit playback system * feat: implement local (loopback) server to resolve stream source and leverage the media_kit playback API * feat: add source change support and re-add prefetching tracks * fix: assign lastId when track fetch completes regardless of error * chore: remove print statements * fix: remote queue not working * fix: increase mpv network timeout to reduce auto-skipping * fix: do not pre-fetch local tracks * fix(proxy-playlist): reset collections on load * chore: fix lint warnings * fix(mobile): player overlay should not be visible when the player is not playing * chore: fix typo in turkish translation * cd: checkout PR branch * cd: upgrade flutter version * chore: fix lint errors
34 lines
852 B
YAML
34 lines
852 B
YAML
name: Lint
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
env:
|
|
FLUTTER_VERSION: '3.19.5'
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
- uses: subosito/flutter-action@v2
|
|
with:
|
|
flutter-version: ${{ env.FLUTTER_VERSION }}
|
|
|
|
- name: Configure repo
|
|
run: |
|
|
flutter pub get
|
|
echo '${{ secrets.DOTENV_NIGHTLY }}' > .env
|
|
dart run build_runner build --delete-conflicting-outputs
|
|
|
|
- name: Lint Dart files
|
|
run: |
|
|
dart analyze --no-fatal-warnings
|
|
|
|
- name: Lint translations & config files
|
|
run: |
|
|
npm install -g @prantlf/jsonlint
|
|
jsonlint -q -D --enforce-double-quotes ./lib/l10n/*.arb
|
|
jsonlint -q -D --enforce-double-quotes -T .vscode/*.json |