Skip to content

Improve overview example in README #66

Improve overview example in README

Improve overview example in README #66

Workflow file for this run

name: PR CI
on: pull_request
jobs:
test:
runs-on: ubuntu-latest
env:
CI: true
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- name: Get yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v1
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Dependencies
run: yarn install
- name: Lint
run: |
yarn prettier:check
yarn lint
- name: Test
run: yarn test