cinny-desktop/.github/workflows/test.yml

39 lines
1.1 KiB
YAML
Raw Normal View History

2022-05-03 15:17:26 +00:00
name: "Build pull request"
on:
#pull_request:
#types: ['opened', 'synchronize']
2022-05-03 15:17:26 +00:00
jobs:
publish-tauri:
strategy:
fail-fast: false
matrix:
2022-09-16 15:19:53 +00:00
platform: [macos-latest, ubuntu-20.04, windows-latest]
2022-05-03 15:17:26 +00:00
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout repository
uses: actions/checkout@v3.0.2
with:
submodules: true
- name: Setup node
uses: actions/setup-node@v3.4.1
2022-05-03 15:17:26 +00:00
with:
2022-06-21 13:08:53 +00:00
node-version: 17.9.0
2022-05-03 15:17:26 +00:00
- name: Install Rust stable
uses: actions-rs/toolchain@v1.0.7
with:
toolchain: stable
- name: Install dependencies (ubuntu only)
2022-09-16 15:19:53 +00:00
if: matrix.platform == 'ubuntu-20.04'
2022-05-03 15:17:26 +00:00
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf
2022-05-03 15:17:26 +00:00
- name: Install cinny dependencies
run: cd cinny && npm ci
- name: Install tauri dependencies
run: npm ci
- name: Build desktop app with Tauri
uses: tauri-apps/tauri-action@v0.3.1
2022-05-03 15:17:26 +00:00
env:
2022-05-04 03:40:28 +00:00
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}