Skip to content

UI Updates (#55)

UI Updates (#55) #7

Workflow file for this run

name: Code Check
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
matrix:
name: 'Node ${{ matrix.node }}'
runs-on: ubuntu-latest
strategy:
matrix:
node: [18]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install dependencies
run: yarn install
- name: Typecheck
run: yarn run typecheck
- name: Unit Test
run: yarn run test