Skip to content

Update README.md

Update README.md #666

Workflow file for this run

name: CI — Yarn test and lint
on: [workflow_dispatch, push]
jobs:
build-test-and-lint:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: yarn
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test
- name: Run linter
run: yarn lint