Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
ac76a84
feat(bamboo-hr-app): migrate and redesign BambooHR app
nicomiguelino Apr 18, 2026
d2e2a20
fix(bamboo-hr-app): update card icons and top bar padding
nicomiguelino Apr 18, 2026
d02f20f
fix(bamboo-hr-app): increase card gap and expand screenshot mock data
nicomiguelino Apr 18, 2026
38f49e3
feat(bamboo-hr-app): add portrait summary cards and refactor source
nicomiguelino Apr 18, 2026
f7dbe32
test(bamboo-hr-app): use data URL photos in screenshot tests
nicomiguelino Apr 19, 2026
9e0dc44
feat(bamboo-hr-app): add glassmorphic background and card styling
nicomiguelino Apr 19, 2026
546fd94
test(bamboo-hr-app): add unit tests for render functions
nicomiguelino Apr 19, 2026
dce6318
Merge branch 'master' into feat/migrate-bamboo-hr-app
nicomiguelino Apr 28, 2026
255210b
chore(bamboo-hr-app): align @types/jsdom version with other edge apps
nicomiguelino Apr 28, 2026
b0a4eda
fix(bamboo-hr-app): show employee photos in On Leave Today card
nicomiguelino Apr 28, 2026
493cf94
docs(bamboo-hr-app): add preview screenshot to README
nicomiguelino Apr 28, 2026
27545a6
style(bamboo-hr-app): improve layout spacing and card sizing
nicomiguelino Apr 29, 2026
11a88e8
Merge branch 'master' into feat/migrate-bamboo-hr-app
nicomiguelino Apr 29, 2026
c639622
Merge branch 'master' into feat/migrate-bamboo-hr-app
nicomiguelino May 1, 2026
7ff3391
chore(deps): bump @screenly/edge-apps to ^0.1.0 in bamboo-hr-app
nicomiguelino May 1, 2026
3b7152c
feat(bamboo-hr-app): add display_errors setting
nicomiguelino May 1, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 0 additions & 40 deletions .github/workflows/blueprint-checks.yml

This file was deleted.

22 changes: 2 additions & 20 deletions .github/workflows/edge-app-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
# Function to add app to list if it has build system and isn't already included
add_app_if_valid() {
local app="$1"
if [[ -n "$app" && "$app" != "helpers" && "$app" != ".bun-create" && "$app" != "blueprint" ]]; then
if [[ -n "$app" && "$app" != "helpers" && "$app" != ".bun-create" ]]; then
if [[ -f "edge-apps/$app/package.json" ]]; then
if [[ ! " $CHANGED_APPS " =~ $app ]]; then
CHANGED_APPS="$CHANGED_APPS $app"
Expand All @@ -58,35 +58,17 @@ jobs:
fi
}

# Check if blueprint has changes and extract unique Edge App directories
BLUEPRINT_CHANGED=false
# Extract unique Edge App directories from changed files
CHANGED_APPS=""

for file in "${FILES_ARRAY[@]}"; do
if [[ "$file" == edge-apps/* ]]; then
# Check for blueprint changes
if [[ "$file" == edge-apps/blueprint/* ]]; then
BLUEPRINT_CHANGED=true
fi

# Extract the app name (first directory after edge-apps/)
APP_NAME=$(echo "$file" | cut -d'/' -f2)
add_app_if_valid "$APP_NAME"
fi
done

# If blueprint changed, add all apps with build systems
if [[ "$BLUEPRINT_CHANGED" == "true" ]]; then
echo "Blueprint changed, adding all apps with build systems..."
# Dynamically discover all Edge Apps with build systems
for app_dir in edge-apps/*/; do
if [[ -d "$app_dir" ]]; then
app=$(basename "$app_dir")
add_app_if_valid "$app"
fi
done
fi

# Remove leading space and set output
CHANGED_APPS="${CHANGED_APPS# }"
echo "changed-apps=$CHANGED_APPS" >> "$GITHUB_OUTPUT"
Expand Down
140 changes: 0 additions & 140 deletions docs/legacy-edge-apps-library.md

This file was deleted.

Loading