Its a crux!

ci: update gh action to use :all commands

+3 -3
+3 -3
.github/actions/build-pnpm-workspace/action.yml
··· 72 72 shell: bash 73 73 run: | 74 74 echo "Building Projects" 75 - pnpm run --parallel build & build_pid=$! 75 + pnpm run build:all & build_pid=$! 76 76 77 77 echo "Validating Code Formatting" 78 - pnpm run --parallel lint & lint_pid=$! 78 + pnpm run lint:all & lint_pid=$! 79 79 80 80 echo "Testing Projects" 81 - pnpm run --parallel test & test_pid=$! 81 + pnpm run test:all & test_pid=$! 82 82 83 83 wait $build_pid; build_exit_code=$? 84 84 wait $lint_pid; lint_exit_code=$?