Skip to content

chore: add dsh.category and dsh.displayName metadata #27

chore: add dsh.category and dsh.displayName metadata

chore: add dsh.category and dsh.displayName metadata #27

Workflow file for this run

name: dsh-bundle
on:
push:
paths:
- 'src/**'
- 'lib/**'
- '.dsh/**'
- 'cordis.patch.yml'
- 'package.json'
- 'package-lock.json'
- 'tsconfig.json'
- 'README.md'
- 'README.zh-CN.md'
- '.github/workflows/dsh-bundle.yml'
pull_request:
paths:
- 'src/**'
- 'lib/**'
- '.dsh/**'
- 'cordis.patch.yml'
- 'package.json'
- 'package-lock.json'
- 'tsconfig.json'
- 'README.md'
- 'README.zh-CN.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 22
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci --legacy-peer-deps
- name: Typecheck
run: npm run typecheck
- name: Build
run: npm run build
- name: Committed build artifact is current
run: git diff --exit-code -- lib
markdownlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Lint dsh docs
run: npx --yes markdownlint-cli@0.42.0 ".dsh/**/*.md" "README.md" "README.zh-CN.md" "RELEASE.md"