Skip to content

Commit 72cad4d

Browse files
committed
fix package.json format
add code-qa.yml step to PRs
1 parent ffbe1b0 commit 72cad4d

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

.github/workflows/code-qa.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Code QA Roo Cline
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
types: [opened, reopened, ready_for_review, synchronize]
8+
branches: [main]
9+
10+
jobs:
11+
code-qa:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v4
16+
17+
- name: Setup Node.js
18+
uses: actions/setup-node@v4
19+
with:
20+
node-version: '18'
21+
cache: 'npm'
22+
23+
- name: Install dependencies
24+
run: npm run install:all
25+
26+
- name: Compile TypeScript
27+
run: npm run compile
28+
29+
- name: Run tests
30+
run: npm test

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145
"start:webview": "cd webview-ui && npm run start",
146146
"build:webview": "cd webview-ui && npm run build",
147147
"test:webview": "cd webview-ui && npm run test",
148-
"publish:marketplace": "vsce publish && ovsx publish",
148+
"publish:marketplace": "vsce publish && ovsx publish"
149149
},
150150
"devDependencies": {
151151
"@types/diff": "^5.2.1",

0 commit comments

Comments
 (0)