Skip to content

Update README.md (#38) #96

Update README.md (#38)

Update README.md (#38) #96

Workflow file for this run

name: Build & lint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, lint, test
run: |
npm ci
npm run build --if-present
npm run lint