fix: add missing linux dependencies (#2675)

This commit is contained in:
Giacomo Cusinato 2025-04-02 09:23:57 +09:00 committed by GitHub
parent 4b0982ccb3
commit d293595b89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -473,6 +473,12 @@ jobs:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: 3.x
- name: Install dependencies (Linux only)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y libx11-dev libxkbfile-dev libsecret-1-dev
- name: Install dependencies
run: yarn