Control lyrics scrolling with mouse wheel and Adjust radio playback logic #29
This file contains 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: Pull Request | |
on: | |
pull_request: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: latest | |
cache: yarn | |
- name: Build | |
run: | | |
yarn install | |
script/ci-build.sh pull_request | |
- name: Upload asar | |
uses: actions/upload-artifact@v3 | |
with: | |
name: asar | |
path: build/*.asar |