Skip to content

Commit

Permalink
ci: run lint:format on branches
Browse files Browse the repository at this point in the history
  • Loading branch information
mujahidkay committed Sep 12, 2024
1 parent d461e4b commit 400c5db
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test-markdown.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Lint Markdown

# run CI on pushes to main, and on all PRs (even the ones that target other
# branches)

on:
push:
branches: [$default-branch]
pull_request:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Lint
run: yarn lint:format

0 comments on commit 400c5db

Please sign in to comment.