diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/lint.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index b2ba316b2..48af6619f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -31,3 +31,12 @@ jobs: node-version: '12.x' - run: npm install -g [email protected] - run: markdownlint '**/*.md' + trailing-whitespace: + name: ๐ Trailing whitespace + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: ๐งน Check for trailing whitespace + run: | + cd test || exit + sh ./check-for-trailing-whitespace.sh || exit 1 |
