Skip to content

feat: users can be granted access to projects #21

feat: users can be granted access to projects

feat: users can be granted access to projects #21

Workflow file for this run

name: Run tests (web)
on:
pull_request:
paths:
- "**/*.ts"
- "**/*.tsx"
- "web/bun.lock"
push:
paths:
- "**/*.ts"
- "**/*.tsx"
- "web/bun.lock"
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Build web project
run: |
bun install
bun run build
working-directory: ./web
- name: Run tests
run: bun test
working-directory: ./web
- name: Run typecheck
run: bun typecheck
working-directory: ./web