Skip to content

WIP:

WIP: #198

Workflow file for this run

name: "Linting"
on:
push:
pull_request:
# The branches below must be a subset of the branches above
branches: [master]
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Dependencies
run: yarn install --immutable
- name: Run liniting
run: npm run lint