mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-17 16:57:50 +00:00
add pyright ci
This commit is contained in:
@@ -10,8 +10,24 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2 # Check out the repository first.
|
- uses: actions/checkout@v2 # Check out the repository first.
|
||||||
- name: Run prettier (JavaScript & TypeScript)
|
|
||||||
|
- name: Install Python dependencies
|
||||||
run: |
|
run: |
|
||||||
pushd frontend
|
python -m pip install --upgrade pip
|
||||||
npm install
|
[ -f requirements.txt ] && pip install -r requirements.txt
|
||||||
npm run lint
|
|
||||||
|
- 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
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"strict": ["*"]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user