I'm using turbo feature called turbo prune
which creates folder out
with partial copy of my monorepo, but unfortunately that means that when running in GitHub Actions commands like turbo run lint
will print out paths that have out
in them (thus breaking regular github error reporting), so I instead of having this command:
turbo run lint
I tried to replace it with:
turbo run lint | sed 's/\/out//g'
Which outputs correct paths, but my lint check always passes because even though turbo
exited with exit code 1, but sed
exited with 0.