build(deps): bump yamllint from 1.32.0 to 1.33.0 #287
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: CI | |
'on': | |
push: | |
branches: | |
- main | |
tags: | |
- '**' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: setup python 3.x | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- uses: actions/[email protected] | |
with: | |
path: ~/.cache/pip | |
key: "${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}" | |
restore-keys: ${{ runner.os }}-pip | |
- name: setup latest node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
- uses: actions/[email protected] | |
with: | |
path: ~/.npm | |
key: "${{ runner.os }}-npm" | |
- name: install dependencies | |
run: | | |
sudo apt-get install shellcheck | |
make install | |
npm install --global markdownlint-cli | |
- name: lint files | |
run: make lint | |
- name: lint commit messages | |
uses: wagoid/[email protected] | |
with: | |
failOnWarnings: true |