From 699da0585a44cc60607d0040baa852b389307abf Mon Sep 17 00:00:00 2001 From: mircearoata Date: Fri, 15 Dec 2023 01:52:13 +0100 Subject: [PATCH] Fix CI steps --- .github/workflows/push.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 7e697a05..a1432cff 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -42,6 +42,7 @@ jobs: - name: Install additional dependencies if: matrix.os == 'ubuntu-latest' run: | + sudo apt update sudo apt -y install libgtk-3-dev libwebkit2gtk-4.0-dev - name: Install Wails @@ -77,15 +78,15 @@ jobs: steps: - uses: actions/checkout@v4 + - uses: pnpm/action-setup@v2 + with: + version: ${{ env.PNPM_VERSION }} + - uses: actions/setup-node@v4 with: node-version: ${{ env.NODE_VERSION }} cache: 'pnpm' cache-dependency-path: frontend - - - uses: pnpm/action-setup@v2 - with: - version: ${{ env.PNPM_VERSION }} - name: Install dependencies working-directory: frontend