Install libfuse2 #15
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: Test | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18, 20, 22] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install MuseScore | |
run: | | |
sudo apt update -y | |
sudo apt install -y software-properties-common | |
sudo add-apt-repository universe | |
sudo apt install -y libfuse2 | |
wget https://github.com/musescore/MuseScore/releases/download/v4.4.3/MuseScore-Studio-4.4.3.242971445-x86_64.AppImage | |
chmod +x MuseScore-Studio-4.4.3.242971445-x86_64.AppImage | |
sudo ln -s $(pwd)/MuseScore-Studio-4.4.3.242971445-x86_64.AppImage /usr/bin/mscore | |
- run: npm install | |
- run: QT_QPA_PLATFORM=offscreen npm test | |
env: | |
CI: true |