Most of the time when you get an error like this (speaking in general and meaningful terms) it is either because of :-
1). A syntax error in the yaml file. To solve this, just make sure that your syntax is correct.
2). Or like the error says “mapping values are not allowed in this context”. It means that the keys/values you have used in the yaml, may be syntactically right but not semantically e.g using double quotes (") instead of a single quotes. Just right click on the error and yaml linter will provide you with some option on how to fix the issue.
Besides, why are you using git push -f origin command to push your changes?
thanks @jwnasambu for the direction you provided to me am trying to put it in action to see what am to gain . I used git push -f , just to test and see whether it could help but wasn’t my intention .
I then installed yaml extension in vscode to try solving the issue but haven’t yet solved .
@jwnasambu , I have eslint also installed, is it enough to test for code before contribution ?