Skip to content

Merge pull request #35 from jehrhardt/use-solidjs #86

Merge pull request #35 from jehrhardt/use-solidjs

Merge pull request #35 from jehrhardt/use-solidjs #86

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
with:
install: true
cache: true
- name: Install dependencies
run: deno install
- name: Enforce formatting
run: deno fmt --check
build-desktop:
name: Build desktop
strategy:
fail-fast: false
matrix:
include:
- platform: "macos-latest"
args: "--target aarch64-apple-darwin"
- platform: "macos-latest"
args: "--target x86_64-apple-darwin"
- platform: "ubuntu-latest"
args: ""
- platform: "windows-latest"
args: ""
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
with:
install: true
cache: true
- name: Install dependencies
run: deno install
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
- name: Build app
run: deno task tauri build