Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

Update README.md

Update README.md #123

Workflow file for this run

name: Validate
on:
- pull_request
- push
jobs:
validate:
name: Lint & Test
runs-on: ubuntu-latest
env:
CI: true
steps:
- name: Check out repo
uses: actions/checkout@main
- name: Set up Node.js 14.x
uses: actions/setup-node@main
with:
node-version: 14.x
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Make docs manifest
run: yarn make-docs-manifest
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Test
run: yarn test