We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e852a67 commit 707403eCopy full SHA for 707403e
1 file changed
.github/workflows/release.yml
@@ -58,25 +58,17 @@ jobs:
58
- name: Install dependencies
59
run: npm ci
60
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
+ - name: Build plugin
+ run: npm run build
68
69
- name: Verify plugin
70
run: npm run verify
71
72
- - name: Build plugin
73
- run: npm run build
74
75
- name: Check dist files
76
run: |
77
if [ ! -d "dist" ]; then
78
echo "Error: dist directory not created!"
79
exit 1
80
fi
81
- echo "✓ Build successful"
+ echo "Build successful"
82
0 commit comments