Skip to content
Merged
Changes from all commits
Commits
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
11 changes: 10 additions & 1 deletion .claude/hooks/session-start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,17 @@ if ! command -v dotnet &> /dev/null; then
echo "export PATH=\"$DOTNET_ROOT:\$PATH\"" >> "$CLAUDE_ENV_FILE"
fi

# Install .NET dependencies
# Install Docker if not available
if ! command -v docker &> /dev/null; then
curl -fsSL https://get.docker.com | sh
fi

# Install .NET dependencies and tools
dotnet restore
dotnet tool restore

# Install Node.js dependencies (npm workspaces)
npm install

# Install Playwright browsers for e2e tests
npx -w tests/e2e playwright install --with-deps
Loading