graph LR;
A1(Trigger by cron)
subgraph Functional test
B1(E2E test)
B2(Upload E2E report)
B1-- test online env -->B2
end
subgraph Static test
C1(Lint test)
C2(Unit test)
C1-->C2
end
subgraph Clean up
A2(Generate summary)
A3(Update summary to dashboard)
A2-->A3
end
A1-->B1 & C1
B2 & C2-->A2