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

Update README.md

Update README.md #26

Workflow file for this run

name: Check
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
cache: npm
cache-dependency-path: package-lock.json
- run: npm ci
- run: npm run lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
cache: npm
cache-dependency-path: package-lock.json
- run: npm ci
- run: npm run build