Skip to content

Following my own instructions on formatting lmao #67

Following my own instructions on formatting lmao

Following my own instructions on formatting lmao #67

Workflow file for this run

name: Run Linting
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: npm install
- name: Run Prettier
run: npm run prettier
- name: Run ESLint
run: npm run lint