Skip to content

Merge pull request #140 from ugogo/dependabot/npm_and_yarn/eslint-plu… #359

Merge pull request #140 from ugogo/dependabot/npm_and_yarn/eslint-plu…

Merge pull request #140 from ugogo/dependabot/npm_and_yarn/eslint-plu… #359

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 12
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Check formatting
run: npm run format:check