docs: add Traditional Chinese README and call to action #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: [pull_request] | |
jobs: | |
merge-conflict: | |
name: Merge Conflict | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Check merge conflict | |
run: grep "^<<<<<<< HEAD" $(git ls-files | xargs) && exit 1 || true | |
trailing-whitespace: | |
name: Trailing Whitespace | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Check for trailing whitespace | |
run: "! git grep -EIn $'[ \t]+$'" |