Skip to content

Commit c0103f1

Browse files
dankeboy36giacomocusinato
authored andcommitted
fix: install missing libx11-dev and libxkbfile-dev libsecret-1-dev
Signed-off-by: dankeboy36 <[email protected]>
1 parent d9a1adb commit c0103f1

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

.github/workflows/check-javascript.yml

+6
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,12 @@ jobs:
7373
cache: yarn
7474
node-version: ${{ env.NODE_VERSION }}
7575

76+
- name: Install Dependencies (Ubuntu)
77+
if: runner.os == 'Linux'
78+
run: |
79+
sudo apt-get update
80+
sudo apt-get install -y libx11-dev libxkbfile-dev libsecret-1-dev
81+
7682
- name: Install npm package dependencies
7783
env:
7884
# Avoid failure of @vscode/ripgrep installation due to GitHub API rate limiting:

.github/workflows/check-yarn.yml

+6
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,12 @@ jobs:
7272
cache: yarn
7373
node-version: ${{ env.NODE_VERSION }}
7474

75+
- name: Install Dependencies (Ubuntu)
76+
if: runner.os == 'Linux'
77+
run: |
78+
sudo apt-get update
79+
sudo apt-get install -y libx11-dev libxkbfile-dev libsecret-1-dev
80+
7581
- name: Install npm package dependencies
7682
env:
7783
# Avoid failure of @vscode/ripgrep installation due to GitHub API rate limiting:

.github/workflows/test-javascript.yml

+6
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,12 @@ jobs:
107107
repo-token: ${{ secrets.GITHUB_TOKEN }}
108108
version: 3.x
109109

110+
- name: Install Dependencies (Ubuntu)
111+
if: runner.os == 'Linux'
112+
run: |
113+
sudo apt-get update
114+
sudo apt-get install -y libx11-dev libxkbfile-dev libsecret-1-dev
115+
110116
- name: Install npm package dependencies
111117
env:
112118
# Avoid failure of @vscode/ripgrep installation due to GitHub API rate limiting:

0 commit comments

Comments
 (0)