chore: remove apisix lts #4443
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: ❄️ Lint | |
on: [pull_request] | |
jobs: | |
markdownlint: | |
name: 🍇 Markdown | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: 🚀 Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '12.x' | |
- run: npm install -g [email protected] | |
- run: markdownlint '**/*.md' --ignore node_modules | |
yamllint: | |
name: 🍏 YAML | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
python-version: '3.x' # Version range or exact version of a Python version to use, using SemVer's version range syntax | |
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install yamllint | |
- name: 🧹 YAML Lint | |
run: | | |
yamllint . |