summary refs log tree commit diff homepage
path: root/.github/workflows/build.yml
blob: 7b9f51113577fe2d2d13f439e44fa4bcd6f12d04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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: Test
      run: yarn test --verbose
    - name: Build
      run: yarn build