add pyright ci

This commit is contained in:
AAGaming
2023-09-25 13:09:33 -04:00
parent f6401f4995
commit 5838ddca56
2 changed files with 23 additions and 4 deletions
+20 -4
View File
@@ -10,8 +10,24 @@ jobs:
steps:
- uses: actions/checkout@v2 # Check out the repository first.
- name: Run prettier (JavaScript & TypeScript)
- name: Install Python dependencies
run: |
pushd frontend
npm install
npm run lint
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