Skip to content

Development Workflows

Quick reference for the standard build, test, and deploy commands across Arda repositories.

Terminal window
./gradlew koverHtmlReport build

After building and unit testing:

Terminal window
op run --env-file 1Password.env -- ./gradlew helmInstallToLocal

From the technical-documentation repository root:

Terminal window
# Build the documentation site
make build
# Run the linters (as in CI/CD)
make lint

From the api-test repository root:

Terminal window
op run --env-file=1Password/dev.env -- \
npx bru run --env ci \
--reporter-html results.html \
--exclude-tags=disabled
Terminal window
op run --env-file=1Password/local.env -- \
npx bru run --env local \
--reporter-html results.html \
--exclude-tags=disabled

Ensure 1Password/local.env has the correct settings for your local environment. The stage.env and prod.env files are available for use with care.