Skip to content

ASND-161: bump versions to 0.0.6 #134

ASND-161: bump versions to 0.0.6

ASND-161: bump versions to 0.0.6 #134

Workflow file for this run

name: Markdown CI
on:
pull_request:
push:
branches: [main]
workflow_dispatch:
env:
NODE_VERSION: "22.x"
jobs:
format:
name: "md: format"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
package_json_file: package.json
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: "pnpm"
cache-dependency-path: pnpm-lock.yaml
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Check Markdown formatting
run: pnpm md:format