feat: add server and change client #11
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |