Skip to content

Remove my bio in favor of GitHub profile #569

Remove my bio in favor of GitHub profile

Remove my bio in favor of GitHub profile #569

Workflow file for this run

name: Validate markdown and YAML
on:
pull_request:
paths:
- '*.md'
- '*.yml'
- '*.yaml'
push:
branches:
- main
paths:
- '*.md'
- '*.yml'
- '*.yaml'
workflow_dispatch:
env:
GH_BOT_EMAIL: "41898282+github-actions[bot]@users.noreply.github.com"
GH_BOT_NAME: "GitHub Action"
permissions:
contents: read
jobs:
lint:
name: Check markdown links
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache-dependency-path: '**/package-lock.json'
cache: 'npm'
- name: Check markdown links
working-directory: ${{ github.workspace }}/.github/linter
run: |
npm ci
npm run lint