mirror of
https://github.com/zerotier/awesome-zerotier.git
synced 2025-12-21 13:23:14 +01:00
Add awesome-lint as a github action
this will catch: - dead links - duplicate links - inconsistent formatting - etc of which there are a bunch to clean up at the moment. ... and basically help this list look consistent with the other awesome lists on the internet. any rules can be disabled if they are wrong or annoying. it doesn't block the repo from being updated in anyway, though that can be configured.
This commit is contained in:
12
.github/workflows/main.yml
vendored
Normal file
12
.github/workflows/main.yml
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
name: CI
|
||||
on:
|
||||
pull_request:
|
||||
branches: [main]
|
||||
jobs:
|
||||
Awesome_Lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- run: npx awesome-lint
|
||||
Reference in New Issue
Block a user