mirror of
https://github.com/Mastermindzh/tidal-hifi.git
synced 2024-11-22 21:42:46 +01:00
Rick van Lieshout
5f330a7c48
* Update configuration of the desktop file (#165) * - Changed the category of the desktop file to AudioVideo - Changed desktop file name to "TIDAL Hi-Fi" * Redesign of the settings window (#168) * Pr dest (#166) * Update configuration of the desktop file (#165) * - Changed the category of the desktop file to AudioVideo - Changed desktop file name to "TIDAL Hi-Fi" Co-authored-by: Ivo Šmerek <ivo97@centrum.cz> * Redesign of the settings window * changed sass to scss, fixed color of switches and disabled rounded corners Co-authored-by: Rick van Lieshout <info@rickvanlieshout.com> * - icon is set to new static path based on Arch/Debian - Name has changed to Tidal-Hifi Co-authored-by: Ivo Šmerek <ivo97@centrum.cz>
42 lines
916 B
YAML
42 lines
916 B
YAML
name: Build CI
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- master
|
|
- develop
|
|
jobs:
|
|
build_on_linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: update apt
|
|
run: sudo apt-get update
|
|
- name: Install libarchive-tools
|
|
run: sudo apt-get install -y libarchive-tools
|
|
- uses: actions/checkout@master
|
|
- uses: actions/setup-node@master
|
|
with:
|
|
node-version: 16
|
|
- run: npm install
|
|
- run: npm run build
|
|
|
|
build_on_mac:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- uses: actions/setup-node@master
|
|
with:
|
|
node-version: 16
|
|
- run: npm install
|
|
- run: npm run build
|
|
|
|
build_on_win:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- uses: actions/setup-node@master
|
|
with:
|
|
node-version: 16
|
|
- run: npm install
|
|
- run: npm run build
|