Skip to content

Commit 1065418

Browse files
committed
fix: revert working dir in actions
1 parent 0fdfec7 commit 1065418

File tree

2 files changed

+0
-18
lines changed

2 files changed

+0
-18
lines changed

.github/workflows/main-release.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,10 @@ jobs:
5555
uses: pnpm/action-setup@v4
5656

5757
- name: Install dependencies
58-
working-directory: app
5958
run: pnpm install --frozen-lockfile
6059

6160
- name: Check release conditions
6261
id: check
63-
working-directory: app
6462
run: |
6563
# Check if this is a changeset release commit
6664
COMMIT_MSG=$(git log -1 --pretty=format:"%s")
@@ -178,7 +176,6 @@ jobs:
178176
uses: pnpm/action-setup@v4
179177

180178
- name: Install dependencies
181-
working-directory: app
182179
run: pnpm install --frozen-lockfile
183180

184181
- name: Install system dependencies for validation
@@ -191,7 +188,6 @@ jobs:
191188
192189
- name: Run comprehensive validation
193190
id: validate
194-
working-directory: app
195191
run: |
196192
echo "🔍 Running pre-release validation..."
197193
VALIDATION_PASSED="true"
@@ -296,7 +292,6 @@ jobs:
296292
uses: pnpm/action-setup@v4
297293

298294
- name: Install dependencies
299-
working-directory: app
300295
run: pnpm install --frozen-lockfile
301296

302297
- name: Create Release Pull Request
@@ -335,11 +330,9 @@ jobs:
335330
uses: pnpm/action-setup@v4
336331

337332
- name: Install dependencies
338-
working-directory: app
339333
run: pnpm install --frozen-lockfile
340334

341335
- name: Sync versions
342-
working-directory: app
343336
run: |
344337
echo "📦 Syncing all version files..."
345338
pnpm run sync-versions
@@ -520,15 +513,12 @@ jobs:
520513
${{ runner.os }}-${{ matrix.target }}-jre-
521514
522515
- name: Install frontend dependencies
523-
working-directory: app
524516
run: pnpm install --frozen-lockfile
525517

526518
- name: Build frontend
527-
working-directory: app
528519
run: pnpm build
529520

530521
- name: Setup JRE for Tabula
531-
working-directory: app
532522
shell: bash
533523
run: |
534524
echo "🔧 Setting up JRE for Tabula PDF processing..."
@@ -663,7 +653,6 @@ jobs:
663653
- name: Build and release Tauri app
664654
id: tauri-action
665655
continue-on-error: true
666-
working-directory: app
667656
run: |
668657
echo "🔨 Building and releasing Tauri app for ${{ matrix.build_name }}..."
669658

.github/workflows/pr-check.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -133,16 +133,13 @@ jobs:
133133
134134
- name: Install dependencies
135135
if: matrix.test_type == 'frontend' || matrix.test_type == 'tauri'
136-
working-directory: app
137136
run: pnpm install --frozen-lockfile
138137

139138
- name: Frontend type check and build
140-
working-directory: app
141139
run: pnpm run build
142140

143141
- name: Setup JRE for Tabula
144142
if: matrix.test_type == 'tauri'
145-
working-directory: app
146143
shell: bash
147144
run: |
148145
echo "🔧 Setting up JRE for Tabula PDF processing..."
@@ -151,7 +148,6 @@ jobs:
151148
152149
- name: Lint check (if available)
153150
if: matrix.test_type == 'frontend'
154-
working-directory: app
155151
run: |
156152
if pnpm run lint --help &>/dev/null; then
157153
echo "Running lint check..."
@@ -162,7 +158,6 @@ jobs:
162158
163159
- name: Check Tauri configuration
164160
if: matrix.test_type == 'tauri'
165-
working-directory: app
166161
run: |
167162
echo "🔍 Validating Tauri configuration..."
168163
@@ -183,7 +178,6 @@ jobs:
183178
184179
- name: Test Tauri build (dev mode)
185180
if: matrix.test_type == 'tauri'
186-
working-directory: app
187181
run: |
188182
echo "🔧 Testing Tauri development build..."
189183
timeout 60s pnpm tauri build --debug || {
@@ -193,7 +187,6 @@ jobs:
193187
194188
- name: Security audit
195189
if: matrix.test_type == 'security'
196-
working-directory: app
197190
run: |
198191
echo "🔒 Running security audit..."
199192
pnpm audit --audit-level moderate || {

0 commit comments

Comments
 (0)