Skip to content

Commit 707403e

Browse files
committed
fix(ci): run build before verify in GitHub Actions
The verify command requires dist/ files to exist, so build must run first.
1 parent e852a67 commit 707403e

1 file changed

Lines changed: 3 additions & 11 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -58,25 +58,17 @@ jobs:
5858
- name: Install dependencies
5959
run: npm ci
6060

61-
- name: Type check (Frontend)
62-
run: npm run test:ts:front
63-
continue-on-error: true
64-
65-
- name: Type check (Backend)
66-
run: npm run test:ts:back
67-
continue-on-error: true
61+
- name: Build plugin
62+
run: npm run build
6863

6964
- name: Verify plugin
7065
run: npm run verify
7166

72-
- name: Build plugin
73-
run: npm run build
74-
7567
- name: Check dist files
7668
run: |
7769
if [ ! -d "dist" ]; then
7870
echo "Error: dist directory not created!"
7971
exit 1
8072
fi
81-
echo "Build successful"
73+
echo "Build successful"
8274

0 commit comments

Comments
 (0)