Skip to content

.gitignore .parcel-cache #222

.gitignore .parcel-cache

.gitignore .parcel-cache #222

Workflow file for this run

name: CI
on:
push:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: yarn
- name: Check formatting with Prettier
run: yarn format:check
- name: Check quality with ESLint
run: yarn lint
- name: Check type compilation with TypeScript
run: yarn type-check
- name: Run tests with Jest
run: yarn test