Whalebird-desktop-client-ma.../.github/workflows/build.yml

28 lines
435 B
YAML
Raw Permalink Normal View History

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