mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 04:07:57 +00:00
adf847a582
* Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update fmt-check.yml * Update .github/workflows/check-licenses.yml Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update .github/workflows/check-markdown.yml Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update .github/workflows/fmt-check.yml Co-authored-by: Chevdor <chevdor@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sergejs Kostjucenko <85877331+sergejparity@users.noreply.github.com> Co-authored-by: Chevdor <chevdor@users.noreply.github.com>
34 lines
767 B
YAML
34 lines
767 B
YAML
name: Check Markdown
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
|
|
|
permissions:
|
|
packages: read
|
|
|
|
jobs:
|
|
lint-markdown:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
|
|
|
|
- uses: actions/setup-node@v3.8.1
|
|
with:
|
|
node-version: "18.x"
|
|
registry-url: "https://npm.pkg.github.com"
|
|
scope: "@paritytech"
|
|
|
|
- name: Install tooling
|
|
run: |
|
|
npm install -g markdownlint-cli
|
|
markdownlint --version
|
|
|
|
- name: Check Markdown
|
|
env:
|
|
CONFIG: .github/.markdownlint.yaml
|
|
run: |
|
|
markdownlint --config "$CONFIG" --ignore target .
|