Skip to content
This repository has been archived by the owner on Jan 27, 2023. It is now read-only.

Commit

Permalink
Implement linting
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints committed Sep 16, 2020
1 parent 657df93 commit ba705c1
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/lint.yml
@@ -0,0 +1,28 @@
Add Github "lint.yml" action:

name: Lint Awesome List

on:
push:
pull_request:

jobs:
awesome-lint:
name: "lint: awesome-lint"
runs-on: ubuntu-latest

steps:
- name: Checkout Repo
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Setup node
uses: actions/setup-node@v1
with:
node-version: "12.x"

- name: Run awesome-lint
run: |
npm install --global awesome-lint@latest
awesome-lint ./README.md

0 comments on commit ba705c1

Please sign in to comment.