name: Lint on: [push] jobs: lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: '14' - run: yarn install - run: yarn lint:js - run: yarn lint:md - run: yarn lint:scss