mirror of
https://github.com/MODSetter/SurfSense.git
synced 2025-09-01 18:19:08 +00:00
Biome: Pre-commit workflow fix (replaced npm to pnpm)
This commit is contained in:
parent
cfa5693d4a
commit
0fd350c43c
1 changed files with 6 additions and 2 deletions
8
.github/workflows/code-quality.yml
vendored
8
.github/workflows/code-quality.yml
vendored
|
@ -224,7 +224,11 @@ jobs:
|
|||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '18'
|
||||
cache: 'npm'
|
||||
|
||||
- name: Install pnpm
|
||||
uses: pnpm/action-setup@v4
|
||||
with:
|
||||
version: latest
|
||||
|
||||
- name: Check if frontend files changed
|
||||
id: frontend-changes
|
||||
|
@ -244,7 +248,7 @@ jobs:
|
|||
- name: Install dependencies for extension
|
||||
if: steps.frontend-changes.outputs.extension == 'true'
|
||||
working-directory: surfsense_browser_extension
|
||||
run: npm ci
|
||||
run: pnpm install --frozen-lockfile
|
||||
|
||||
- name: Install pre-commit
|
||||
run: pip install pre-commit
|
||||
|
|
Loading…
Add table
Reference in a new issue