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

Update readme

Update readme #210

Workflow file for this run

name: Build and Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js 16
uses: actions/setup-node@v1
with:
node-version: 16
- name: Install project
run: yarn
- name: Build the project
run: yarn build
- name: Run tests
run: yarn test