1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2025-01-27 15:49:43 +01:00

34 lines
577 B
YAML
Raw Normal View History

2022-07-01 23:38:33 +09:00
name: Build
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v3
with:
2022-11-26 17:56:19 +09:00
node-version: 18
2022-07-01 23:38:33 +09:00
- name: Install
run: |
yarn install
2022-07-28 00:27:21 +09:00
- name: typecheck
run: |
yarn run typecheck
2022-07-01 23:38:33 +09:00
- name: Test
run: |
yarn run spec
- name: Compile main
run: |
yarn run pack:main
- name: Compile renderer
run: |
yarn run pack:renderer