Skip to content

fix: publish flow

fix: publish flow #21

Workflow file for this run

name: PR build
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2.3.4
- name: setup
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: install
run: npm i
- name: build
run: npm run build --workspaces
- name: test
run: npm run test --workspaces