Add client connection test #225 #174
This file contains 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: "test-typescript-codebase-on-main" | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "packages/ui/**" | ||
- ".github/workflows/test-typescript-codebase-on-main.yml" | ||
pull_request: | ||
branches: | ||
- main | ||
- integration-* | ||
paths: | ||
- "packages/ui/**" | ||
- ".github/workflows/test-typescript-codebase-on-main.yml" | ||
defaults: | ||
run: | ||
working-directory: packages/ui | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up NodeJS | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
- name: Install dependencies | ||
run: bun install | ||
- name: Build frontend | ||
run: bun run build |