You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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