Grommash9 / tg_chat_mate

https://grommash9.github.io/tg_chat_mate/
MIT License
5 stars 6 forks source link

Travis CI: Run python and typescript linting stages sequentially #171

Closed Jonatan-Chaverri closed 8 months ago

Jonatan-Chaverri commented 8 months ago

Solves issue https://github.com/Grommash9/tg_chat_mate/issues/169

According to official Travis documentation:

Stages group jobs that run in parallel and different stages run sequentially.

So, we just need to run Python linting and Typescript linting jobs in the same stage for them to run in parallel. In the current implementation, the stages where they used to run are both called 'linting.' However, this can be confusing and possibly lead to unpredictable behavior. Therefore, I'm removing the duplicate names and letting them be in the same stage.

Jonatan-Chaverri commented 8 months ago

Actually this is not correct. Travis is only running one job now. So closing this PR.