Skip to content

[chore] bump version #5

[chore] bump version

[chore] bump version #5

Workflow file for this run

name: Build
on:
push:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: yarn install --frozen-lockfile
- run: yarn run prepare
- name: Type Check
run: yarn run typescript
- name: Lint
run: yarn run lint
- name: Test
run: yarn run test