动作ESLint 在Pull请求中更改的文件上运行ESLint的GitHub Action。 用法 .github/workflows/lint.yml : name : Lint on : pull_request : push : branches : - master jobs : eslint : runs-on : ubuntu-latest steps : - uses : actions/checkout@v2 - uses : actions/setup-node@v2 with : node-version : ' 14 ' - run : npm ci # or yarn install - uses : sibiraj-s/actio