doc: add minutes for meeting 17 July 2024 (#1597) #956
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-ignore: | |
- dependabot/** | |
paths: | |
- package*.json | |
- '**/*.md' | |
- .github/workflows/ci.yml | |
- .github/workflows/remark-lint-problem-matcher.json | |
pull_request: | |
paths: | |
- package*.json | |
- '**/*.md' | |
- .github/workflows/ci.yml | |
- .github/workflows/remark-lint-problem-matcher.json | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Install npm dependencies | |
run: npm ci | |
- name: Lint markdown files | |
run: | | |
echo "::add-matcher::.github/workflows/remark-lint-problem-matcher.json" | |
npm test | |
- name: Lint YAML files | |
run: | | |
curl https://raw.githubusercontent.com/nodejs/node/HEAD/.yamllint.yaml -o .yamllint.yaml | |
yamllint . |