Skip to content

Update screenshot; add readme to tech folders (#7128) #1729

Update screenshot; add readme to tech folders (#7128)

Update screenshot; add readme to tech folders (#7128) #1729

Workflow file for this run

name: Markdownlint
on:
push:
paths:
- "**/*.md"
pull_request:
paths:
- "**/*.md"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 #@v2
- name: Use Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e #@v1
with:
node-version: 12.x
- name: Run Markdownlint
run: |
npm i -g markdownlint-cli@0.22.0
markdownlint "**/*.md"