Skip to content

Asad: Eslint workflow added #6

Asad: Eslint workflow added

Asad: Eslint workflow added #6

Workflow file for this run

name: Lint
on:
push:
branches-ignore:
pull_request:
branches:
- '*' # Run linting on pull requests
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install dependencies
run: yarn install
- name: Run linting
run: yarn lint