Files
Roo-Code/.github/workflows/code-qa.yml
ColemanRoo b1c0e9be41 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
2024-11-27 16:00:53 -06:00

28 lines
537 B
YAML

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