Skip to content

Build triggered by @undyingwraith #91

Build triggered by @undyingwraith

Build triggered by @undyingwraith #91

Workflow file for this run

name: build
run-name: Build triggered by @${{ github.actor }}
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Install dependencies
run: yarn --immutable --check-cache
- name: Run build
run: yarn build
- name: Run tests
run: yarn test
- name: Build/release Electron app
uses: paneron/[email protected]
with:
package_root: ./packages/desktop
github_token: ${{ secrets.github_token }}
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
skip_build: true
skip_package_manager_install: true