Skip to content

chore: Doc update (#2) #2

chore: Doc update (#2)

chore: Doc update (#2) #2

Workflow file for this run

name: ci/cd
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: yarn
node-version: '18'
- name: Install deps
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Tests
run: yarn run test:unit