feat: Add comprehensive unit and integration testing infrastructure #38

Merged
jimmy merged 6 commits from feature/add-testing-infrastructure into main 2026-03-30 11:19:19 +08:00
Showing only changes of commit 4eae0dca2f - Show all commits
+2 -5
View File
@@ -29,11 +29,8 @@ RUN wget -q -O /usr/local/bin/yq "https://github.com/mikefarah/yq/releases/downl
&& chmod +x /usr/local/bin/yq && chmod +x /usr/local/bin/yq
ARG TEA_VERSION=0.12.0 ARG TEA_VERSION=0.12.0
RUN wget -q -O /tmp/tea.tar.gz "https://dl.gitea.com/tea/${TEA_VERSION}/tea-${TEA_VERSION}-linux-amd64.tar.gz" \ RUN wget -q -O /usr/local/bin/tea "https://gitea.com/gitea/tea/releases/download/v${TEA_VERSION}/tea-${TEA_VERSION}-linux-amd64" \
&& tar -xzf /tmp/tea.tar.gz -C /tmp \ && chmod +x /usr/local/bin/tea
&& mv /tmp/tea-${TEA_VERSION}-linux-amd64/tea /usr/local/bin/tea \
&& chmod +x /usr/local/bin/tea \
&& rm -rf /tmp/tea.tar.gz /tmp/tea-${TEA_VERSION}-linux-amd64
RUN npm install -g @anthropic-ai/claude-code RUN npm install -g @anthropic-ai/claude-code