Skip to content

chore: Readme update #88

chore: Readme update

chore: Readme update #88

Workflow file for this run

name: JS
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: "yarn"
node-version: 18
- name: Install node modules
run: yarn
- name: TSC
run: yarn tsc
- name: yarn lint
run: yarn lint
- name: Build
run: yarn build