scimgateway
Version:
Using SCIM protocol as a gateway for user provisioning to other endpoints
17 lines (13 loc) • 350 B
YAML
# Specify the operating system
os: linux
dist: focal # Use Ubuntu 20.04 (focal) or another version as needed
# Install Bun
before_install:
- curl -fsSL https://bun.sh/install | bash
- export PATH="$HOME/.bun/bin:$PATH"
# Install project dependencies
install:
- bun install
# Run the Bun test runner
script:
- bun run test