Skip to content

chore: fix version #123

chore: fix version

chore: fix version #123

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "14.x"
registry-url: "https://registry.npmjs.org"
- name: install deps
run: yarn install --frozen-lockfile
- name: build
run: yarn workspaces run tsc
- name: lint
run: yarn lint
- name: check with prettier
run: yarn prettier . --check
- name: test
run: yarn test