Skip to content

feat: add animations #12

feat: add animations

feat: add animations #12

Workflow file for this run

name: Code check
on:
pull_request:
branches:
- main
jobs:
lint:
name: Eslint, Typescript, prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: ESLint
run: npm run lint
- name: Type check
run: npm run typecheck
- name: Prettier
run: npm run format:check