diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index a410b82..9b3500d 100644 --- a/.github/workflows/backend.yml +++ b/.github/workflows/backend.yml @@ -9,6 +9,7 @@ on: jobs: check: + name: "⚙️ Check" strategy: fail-fast: false matrix: @@ -16,11 +17,11 @@ jobs: runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@v4 - - name: Install dependencies (ubuntu only) - if: matrix.platform == 'ubuntu-20.04' + - if: matrix.platform == 'ubuntu-20.04' run: | sudo apt-get update sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf + - run: yarn --immutable - uses: tauri-apps/tauri-action@v0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index d42cc98..2b074b8 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 19.x - - run: yarn --immutable --immutable-cache + - run: yarn --immutable - run: yarn lint typecheck: name: "💯 Typecheck" @@ -33,5 +33,5 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 19.x - - run: yarn + - run: yarn --immutable - run: yarn typecheck