[Snyk] Security upgrade alpine from 3.17.1 to 3.19.4 #21
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: Checks | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
markdownlint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out code | |
uses: actions/checkout@v3 | |
- name: install dependencies | |
run: npm install | |
- name: run markdownlint | |
run: make markdownlint | |
yamllint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out code | |
uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: install yamllint | |
run: make install-yamllint | |
- name: run yamllint | |
run: yamllint . -f github | |
misspell: | |
runs-on: ubuntu-latest | |
steps: | |
- name: check out code | |
uses: actions/checkout@v3 | |
- name: run misspell | |
run: make misspell | |
markdownlinkcheck: | |
name: markdownlinkcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run link check | |
uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-quiet-mode: 'no' | |
use-verbose-mode: 'yes' | |
config-file: '.github/.mlc_config.json' | |
sanity: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: run sanitycheck.py | |
run: python3 ./internal/tools/sanitycheck.py |