[MINOR] Fix ComponentTests

While debugging why the tests failed, the component tests
were changed such that they don't return exit codes based on parsing or
failing. This commit fixes that, by changing component tests to use
the same script as function- and application tests.
diff --git a/.github/workflows/componentTests.yml b/.github/workflows/componentTests.yml
index a1b5dc5..19a5961 100644
--- a/.github/workflows/componentTests.yml
+++ b/.github/workflows/componentTests.yml
@@ -49,9 +49,9 @@
           ${{ runner.os }}-maven-test-
 
     - name: Component Tests
-      run: mvn -ntp test -D maven.test.skip=false -D automatedtestbase.outputbuffering=true -D test=org.apache.sysds.test.component.** | grep -v "already exists in destination."
+      run: ./docker/entrypoint.sh org.apache.sysds.test.component.**
     
     - name: User Tests
-      run: mvn -ntp test -D maven.test.skip=false -D automatedtestbase.outputbuffering=true -D test=org.apache.sysds.test.usertest.** | grep -v "already exists in destination."
+      run: ./docker/entrypoint.sh org.apache.sysds.test.usertest.**