Skip to content

update readme for 3.0.1 #57

update readme for 3.0.1

update readme for 3.0.1 #57

Workflow file for this run

name: Build, Lint, Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache Node Modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
- name: Install Node Modules
run: npm ci
- name: Build
run: npm run build
- name: Lint
run: npm run lint