選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ci.yml 267B

123456789101112131415
  1. name: Linter
  2. on: [pull_request]
  3. jobs:
  4. run-linter:
  5. name: Run Linter
  6. runs-on: ubuntu-latest
  7. steps:
  8. - uses: actions/checkout@v2
  9. - uses: actions/setup-node@v1
  10. with:
  11. node-version: '12.x'
  12. - run: npm install
  13. - run: npm run lint