Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/build-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,14 @@ jobs:
C:\Users\runneradmin\.local\bin\poetry self add "poetry-dynamic-versioning[plugin]"
C:\Users\runneradmin\.local\bin\poetry install --no-interaction

- name: Set up pnpm 📦
uses: pnpm/action-setup@v4
with:
version: 10

- name: Install JS dependencies ⬇️
working-directory: ./frontend
run: |
npm i -g pnpm
pnpm i --frozen-lockfile --dangerously-allow-all-builds
run: pnpm i --frozen-lockfile --dangerously-allow-all-builds

- name: Build JS Frontend 🛠️
working-directory: ./frontend
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,14 @@ jobs:
poetry self add "poetry-dynamic-versioning[plugin]"
poetry install --no-interaction

- name: Set up pnpm 📦
uses: pnpm/action-setup@v4
with:
version: 10

- name: Install JS dependencies ⬇️
working-directory: ./frontend
run: |
npm i -g pnpm
pnpm i --frozen-lockfile --dangerously-allow-all-builds
run: pnpm i --frozen-lockfile --dangerously-allow-all-builds

- name: Build JS Frontend 🛠️
working-directory: ./frontend
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@ jobs:
steps:
- uses: actions/checkout@v4 # Check out the repository first.

- name: Set up pnpm 📦
uses: pnpm/action-setup@v4
with:
version: 10

- name: Install TypeScript dependencies
working-directory: frontend
run: |
npm i -g pnpm
pnpm i --frozen-lockfile --dangerously-allow-all-builds
run: pnpm i --frozen-lockfile --dangerously-allow-all-builds

- name: Run prettier (TypeScript)
working-directory: frontend
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,14 @@ jobs:
working-directory: backend
run: poetry install --no-interaction

- name: Set up pnpm 📦
uses: pnpm/action-setup@v4
with:
version: 10

- name: Install TypeScript dependencies
working-directory: frontend
run: |
npm i -g pnpm
pnpm i --frozen-lockfile --dangerously-allow-all-builds
run: pnpm i --frozen-lockfile --dangerously-allow-all-builds

- name: Run pyright (Python)
uses: jakebailey/pyright-action@v1
Expand Down