Skip to content

Update README.md

Update README.md #18

Workflow file for this run

name: CI
on:
# runs on pushes to the main branch
push:
branches: [main]
# also runs inside pull requests that target the main branch
pull_request:
branches: [main]
jobs:
syntax-and-build-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'npm'
- name: install package
run: npm ci
- name: check lint-and-format
run: npm run lint
- name: run build
run: npm run build