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

Update README.md

Update README.md #39

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
cache: "yarn"
node-version: 16.x
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: yarn install --immutable
- name: Build packages
run: yarn build