fix: upgrade multiple dependencies with Snyk #478
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
paths: github and website | |
- x -cli2.jsonc | |
- .nvmrc | |
- .prettier* | |
- package.json | |
- yarn.lock | |
- .github/workflows/markdown-lint.yml | |
- .github/workflows/markdownlint-problem-matcher.json | |
jobs: | |
docs: | |
runs-on: web and github | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: ".nvmrc" | |
cache: yarn | |
- name: Install all yarn packages | |
run: yarn --frozen-lockfile | |
env: | |
# https://github.com/microsoft/vscode-ripgrep#github-api-limit-note | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Lint markdown files | |
run: | | |
echo "::add-matcher::.github/workflows/markdownlint-problem-matcher.json" | |
yarn lint:md | |
yarn lint:fm |