Skip to content

Reimplement sending events to renderer #21

Reimplement sending events to renderer

Reimplement sending events to renderer #21

Workflow file for this run

name: Build
on: push
permissions:
contents: write
actions: write
jobs:
build:
strategy:
matrix:
os: [ windows-latest, macos-latest, ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
- name: Install dependencies
run: yarn install
- name: Build dist package
run: yarn run dist
env:
GH_TOKEN: ${{ github.token }}
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: dist-${{ matrix.os }}
path: dist