Skip to content

docs: update README.md #97

docs: update README.md

docs: update README.md #97

Workflow file for this run

name: Testing and Linting
on: [push]
jobs:
check-code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install packages
run: yarn install
- name: Run Lint Checks
run: yarn lint
- name: Run Tests
run: yarn test