Skip to content

Commit

Permalink
Sort and auto-approve apt packages (#483)
Browse files Browse the repository at this point in the history
  • Loading branch information
calcmogul authored May 24, 2024
1 parent 3b91f2f commit e5cf0a6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 12 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,17 @@ jobs:
- name: Install Linux dependencies
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt update
sudo apt install libwebkit2gtk-4.0-dev \
sudo apt-get update -y
sudo apt-get install -y \
build-essential \
curl \
wget \
file \
libssl-dev \
libgtk-3-dev \
libayatana-appindicator3-dev \
librsvg2-dev
libgtk-3-dev \
librsvg2-dev \
libssl-dev \
libwebkit2gtk-4.0-dev \
wget
- name: Install Node.js dependencies
run: npm install
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/lint-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,17 @@ jobs:
- name: Install Linux dependencies
run: |
sudo apt update
sudo apt install libwebkit2gtk-4.0-dev \
sudo apt-get update -y
sudo apt-get install -y \
build-essential \
curl \
wget \
file \
libssl-dev \
libgtk-3-dev \
libayatana-appindicator3-dev \
librsvg2-dev
libgtk-3-dev \
librsvg2-dev \
libssl-dev \
libwebkit2gtk-4.0-dev \
wget
- uses: actions/setup-node@v3
with:
Expand Down

0 comments on commit e5cf0a6

Please sign in to comment.