1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2025-02-01 18:06:45 +01:00

28 lines
435 B
YAML
Raw Normal View History

2023-11-07 00:57:47 +09:00
name: Build
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
2023-12-02 07:03:22 +00:00
- uses: actions/setup-node@v4
2023-11-07 00:57:47 +09:00
with:
2023-12-30 18:42:17 +09:00
node-version: 20
2023-11-07 00:57:47 +09:00
- name: Install
run: |
yarn install
- name: typecheck
run: |
yarn run typecheck
2024-03-08 21:05:59 +09:00
- name: Build web
run: |
yarn run build:web