lint.yml 391 B

12345678910111213141516171819202122
  1. name: Lint
  2. on: pull_request
  3. jobs:
  4. lint:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - uses: actions/checkout@v2
  8. - name: Setup Node.js 14.x
  9. uses: actions/setup-node@v2
  10. with:
  11. node-version: 14.x
  12. - name: Install and lint
  13. run: |
  14. yarn --frozen-lockfile
  15. yarn test:other
  16. yarn test:code
  17. yarn test:typecheck