Skip to content

Add screenshots + gif to readme #69

Add screenshots + gif to readme

Add screenshots + gif to readme #69

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run npm install, linter, type checker, and tests
uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run type-check
- run: npm run test-with-coverage