Skip to content

Increase allowed roles for post #66

Increase allowed roles for post

Increase allowed roles for post #66

Workflow file for this run

name: Run unit tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: build-app
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies # (assuming your project has dependencies)
run: bun install # You can use npm/yarn/pnpm instead if you prefer
- name: Run tests
run: npx jest