Skip to content

Revert "Refine analytics and responses UI and integrate real data" #59

Revert "Refine analytics and responses UI and integrate real data"

Revert "Refine analytics and responses UI and integrate real data" #59

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Run lint
run: bun run lint
- name: Run tests
run: bun run test
- name: Run integration tests
run: bunx vitest run src/integration_testing/
- name: Run build
run: bun run build