Files
decky-loader/.github/workflows/lint.yml
T
2023-10-31 23:13:00 +02:00

34 lines
785 B
YAML

name: Lint
on:
push:
pull_request:
jobs:
lint:
name: Run linters
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3 # Check out the repository first.
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
[ -f requirements.txt ] && pip install -r requirements.txt
- name: Install JavaScript dependencies
working-directory: frontend
run: |
npm i -g pnpm
pnpm i --frozen-lockfile
- name: Run pyright (Python)
uses: jakebailey/pyright-action@v1
with:
python-version: "3.10.6"
no-comments: true
- name: Run prettier (JavaScript & TypeScript)
working-directory: frontend
run: pnpm run lint