fix(deps): update markdownlint-cli to 0.44.0 #64
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: PR Actions | |
on: | |
pull_request: | |
permissions: | |
contents: write | |
issues: write | |
pull-requests: write | |
jobs: | |
pr: | |
name: PR Actions | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js Environment | |
uses: actions/[email protected] | |
with: | |
always-auth: true | |
node-version-file: '.nvmrc' | |
registry-url: 'https://registry.npmjs.org' | |
scope: '@ivuorinen' | |
- name: Cache Node Modules | |
uses: actions/[email protected] | |
id: cache | |
with: | |
path: node_modules | |
key: node-modules-${{ hashFiles('**/yarn.lock') }} | |
- name: Install Dependencies | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: yarn install | |
- name: Yarn Lock Changes | |
# Please use `main` as version before the stable release will be published as `v1`. | |
uses: Simek/yarn-lock-changes@main | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# Optional inputs, can be deleted safely if you are happy with default values. | |
collapsibleThreshold: 25 | |
failOnDowngrade: false | |
path: yarn.lock | |
updateComment: true | |
groupByType: false |