Skip to content

chore: bump @capacitor/cli from 5.7.5 to 5.7.6 #55

chore: bump @capacitor/cli from 5.7.5 to 5.7.6

chore: bump @capacitor/cli from 5.7.5 to 5.7.6 #55

Workflow file for this run

name: CI Desktop
on:
pull_request:
branches: [main]
schedule:
- cron: '0 2 2 */4 *'
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
strategy:
fail-fast: true
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'yarn'
- name: Install JS dependencies
run: yarn
- name: Build Electron app
run: yarn build:desktop
env:
GH_TOKEN: ${{ secrets.github_token }}