mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 12:21:13 -05:00
fix package.json format (#20)
* fix package.json format add code-qa.yml step to PRs * fix package-lock.json to use npm instead of codeartifact * removing test step as it requires vs code * update code owner file
This commit is contained in:
4
.github/CODEOWNERS
vendored
4
.github/CODEOWNERS
vendored
@@ -1,4 +1,2 @@
|
||||
# These owners will be the default owners for everything in the repo
|
||||
* @stea9499
|
||||
* @ColemanRoo
|
||||
* @mrubens
|
||||
* @stea9499 @ColemanRoo @mrubens
|
||||
27
.github/workflows/code-qa.yml
vendored
Normal file
27
.github/workflows/code-qa.yml
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
name: Code QA Roo Cline
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
types: [opened, reopened, ready_for_review, synchronize]
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
code-qa:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '18'
|
||||
cache: 'npm'
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm run install:all
|
||||
|
||||
- name: Compile TypeScript
|
||||
run: npm run compile
|
||||
5923
package-lock.json
generated
5923
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -145,7 +145,7 @@
|
||||
"start:webview": "cd webview-ui && npm run start",
|
||||
"build:webview": "cd webview-ui && npm run build",
|
||||
"test:webview": "cd webview-ui && npm run test",
|
||||
"publish:marketplace": "vsce publish && ovsx publish",
|
||||
"publish:marketplace": "vsce publish && ovsx publish"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/diff": "^5.2.1",
|
||||
|
||||
Reference in New Issue
Block a user