Skip to content

Update README.md

Update README.md #22

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build, lint, and test
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
- name: Lint
run: yarn workspace react-iv-viewer lint
- name: Build
run: yarn build