diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 760b1edcec4..eadd93eb22f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,6 +14,12 @@ jobs: - name: RUN -- npm test run: ( cd tests/travis && npm test ) + - name: Check description of pull request + env: + PRDESC: ${{ github.event.pull_request.body }} + run: | + echo "$PRDESC" | grep -qv '"' || ( echo "::error:: Description of Pull Request shouldn't contain quote symbols [\"], please replace them with single quote [']."; false ) + # Check Lua files with "luacheck" tool (Lua static analyzer). luacheck: runs-on: ubuntu-20.04