name: Lint on: [push, pull_request] jobs: eslint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 with: fetch-depth: 1 - uses: actions/setup-node@v1 with: node-version: 12 - run: yarn --frozen-lockfile --ignore-engines --ignore-optional --no-bin-links --non-interactive --silent --ignore-scripts --production=false - name: ESLint Action uses: gimenete/eslint-action@1.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}