Skip to content

Feat/parent page method #93

Feat/parent page method

Feat/parent page method #93

Workflow file for this run

name: Markdown Lint
on:
pull_request:
push:
branches:
- main
jobs:
markdownlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Fix and Push markdownlint issues
if: ${{ github.event_name == 'pull_request' }}
continue-on-error: true
run: npm run fix:md
- name: Commit & Push changes
if: ${{ github.event_name == 'pull_request' }}
uses: actions-js/push@master
continue-on-error: true
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.head_ref }}
- name: Markdown Lint
run: npm run lint:md