improve CI

This commit is contained in:
Fractal-Tess
2024-01-30 09:03:03 +02:00
parent 9e06b159f8
commit c0af054cd4
5 changed files with 48 additions and 74 deletions

View File

@@ -17,31 +17,16 @@ jobs:
with:
fetch-depth: 0
- name: Install Node.js 20
- name: Pnpm setup
uses: pnpm/action-setup@v2
with:
version: 8.10
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 8.10.0
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
@@ -50,6 +35,7 @@ jobs:
run: pnpm svelte:build
- uses: rui314/setup-mold@v1
if: matrix.platform == 'ubuntu-22.04'
with:
make-default: false
@@ -57,6 +43,8 @@ jobs:
uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
workspaces: './src-tauri/ -> target'
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-22.04'
@@ -64,7 +52,8 @@ jobs:
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- uses: tauri-apps/tauri-action@v0
- name: Build and test
uses: tauri-apps/tauri-action@v0
env:
TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}