updated yarn.lock #218
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: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install modules | |
run: yarn | |
- 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 |