chore(deps): update dependency markdownlint-cli to ^0.43.0 (#463) #1739
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up node.js | |
uses: actions/setup-node@v4 | |
with: | |
# node version used by VS Code | |
node-version: 16 | |
- name: Restore dependencies | |
run: npm ci | |
- name: Lint | |
run: npm run lint | |
- name: Format check | |
run: npm run format:check | |
- name: Prepublish | |
run: npm run vscode:prepublish |