Skip to content

Commit b1c0e9b

Browse files
authored
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
1 parent ffbe1b0 commit b1c0e9b

File tree

4 files changed

+3750
-2228
lines changed

4 files changed

+3750
-2228
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
# These owners will be the default owners for everything in the repo
2-
* @stea9499
3-
* @ColemanRoo
4-
* @mrubens
2+
* @stea9499 @ColemanRoo @mrubens

.github/workflows/code-qa.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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

0 commit comments

Comments
 (0)