Skip to content

feat: add server and change client #11

feat: add server and change client

feat: add server and change client #11

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
- dev
workflow_dispatch:
env:
EM_CACHE_FOLDER: "emsdk-cache"
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: "Setup node"
uses: actions/setup-node@v2
with:
node-version: "23.6.0"
- name: "Setup bun"
uses: oven-sh/setup-bun@v2
- name: "Install dependencies"
run: bun install
- name: "Run tests"
run: bun lerna run test:unit
- name: "Run linter"
run: bun lerna run lint