summary refs log tree commit diff homepage
path: root/.github/workflows/build.yml
blob: 10e715be4c662022c7c7d4d1e9951fde06bb9395 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: Build
on: [push]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - uses: actions/setup-node@v2
      with:
        node-version: '16.x'
    - name: Install packages
      run: yarn install
    - name: Type check
      run: yarn type-check
    - name: Build
      run: yarn build