Skip to content

chore(deps): update pnpm/action-setup action to v2.4.0 #15

chore(deps): update pnpm/action-setup action to v2.4.0

chore(deps): update pnpm/action-setup action to v2.4.0 #15

Workflow file for this run

# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
name: "Markdown Lint"
on: # yamllint disable-line rule:truthy
push:
paths:
- "**.md"
pull_request:
paths:
- "**.md"
jobs:
text-lint:
name: "Markdown lint"
runs-on: "ubuntu-latest"
steps:
- name: "Git checkout"
uses: "actions/checkout@v3"
with:
fetch-depth: 2
env:
GIT_COMMITTER_NAME: "GitHub Actions Shell"
GIT_AUTHOR_NAME: "GitHub Actions Shell"
EMAIL: "github-actions[bot]@users.noreply.github.com"
- name: "Use Node.js 16.x"
uses: "actions/setup-node@v3"
with:
node-version: "16.x"
- uses: "pnpm/[email protected]"
with:
version: 6
- name: "Set node version to ${{ matrix.node_version }}"
uses: "actions/setup-node@v3"
with:
node-version: "${{ matrix.node_version }}"
cache: "pnpm"
- name: "Install packages"
run: "pnpm install --frozen-lockfile"
env:
SKIP_CHECK: "true"
- name: "lint:text"
run: "pnpm run lint:text"