Skip to content

Commit

Permalink
Merge branch 'main' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
cvyl authored Feb 28, 2024
2 parents 6d4ec7a + e5139b3 commit dc9607e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Awesome Lint

on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
workflow_dispatch:

jobs:
test:
name: Run Awesome Linter
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Awesome Lint
run: npm install -g awesome-lint
- name: Run Awesome Lint
run: awesome-lint readme.md

0 comments on commit dc9607e

Please sign in to comment.