Skip to content

Commit

Permalink
fix: workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
LIMPIX31 committed Nov 17, 2023
1 parent 3334ba4 commit 83f211b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,19 @@ on:

jobs:
check:
name: "⚙️ Check"
strategy:
fail-fast: false
matrix:
platform: [ ubuntu-20.04, windows-latest ]
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 }}
4 changes: 2 additions & 2 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -33,5 +33,5 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 19.x
- run: yarn
- run: yarn --immutable
- run: yarn typecheck

0 comments on commit 83f211b

Please sign in to comment.