Merge aa/type-cleanup-py (work by marios, aa, wolv)

This commit is contained in:
TrainDoctor
2023-10-25 19:47:33 -07:00
parent dacd2c19eb
commit a7669799bc
27 changed files with 571 additions and 439 deletions
+10 -4
View File
@@ -2,6 +2,7 @@ name: Lint
on:
push:
pull_request:
jobs:
lint:
@@ -10,8 +11,13 @@ jobs:
steps:
- uses: actions/checkout@v3 # Check out the repository first.
- name: Run prettier (JavaScript & TypeScript)
- name: Install TypeScript dependencies
working-directory: frontend
run: |
pushd frontend
npm install
npm run lint
npm i -g pnpm
pnpm i --frozen-lockfile
- name: Run prettier (TypeScript)
working-directory: frontend
run: pnpm run lint