Skip to content

feat: allow customizing the alert type to admonitions directive mapping via the plugin options #12

feat: allow customizing the alert type to admonitions directive mapping via the plugin options

feat: allow customizing the alert type to admonitions directive mapping via the plugin options #12

Workflow file for this run

name: PR Checks
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Prepare
uses: ./.github/actions/prepare
- name: Run lint commands
run: pnpm lint
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Prepare
uses: ./.github/actions/prepare
- name: Run builds
run: pnpm build
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Prepare
uses: ./.github/actions/prepare
- name: Run tests
run: pnpm test