feat: implement lo-fi ui (#5) #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
build: | |
name: CI | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18.16.1 | |
- name: Install | |
run: yarn install --immutable | |
- name: Check Spells | |
run: yarn ci:spell | |
- name: Check Format | |
run: yarn ci:format | |
- name: Check Types | |
run: yarn ci:ts | |
- name: Tests | |
run: yarn test | |
- name: Build | |
run: yarn build |