Skip to content

Update README.md

Update README.md #74

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12.x
- uses: actions/cache@v1
with:
path: node_modules
key: nodeModules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
nodeModules-
- run: yarn install --frozen-lockfile
env:
CI: true
- run: cd packages/next-client-script && yarn build
- run: yarn lint
env:
CI: true
- run: cd packages/example && yarn build