Skip to content

chore(deps): update all non-major dependencies (#49) #422

chore(deps): update all non-major dependencies (#49)

chore(deps): update all non-major dependencies (#49) #422

Workflow file for this run

name: unit-test
on:
push:
branches:
- 'main'
pull_request:
branches:
- '**'
workflow_dispatch:
jobs:
build-and-unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Build
run: yarn build
- name: Unit test
run: yarn test:unit