mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Enabling unit tests for CI (#44)
This commit is contained in:
parent
733e236725
commit
0ac3dd5753
1 changed files with 18 additions and 0 deletions
18
.github/workflows/code-qa.yml
vendored
18
.github/workflows/code-qa.yml
vendored
|
|
@ -25,3 +25,21 @@ jobs:
|
|||
|
||||
- name: Compile TypeScript
|
||||
run: npm run compile
|
||||
|
||||
unit-test:
|
||||
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: Run unit tests
|
||||
run: npx jest
|
||||
Loading…
Add table
Reference in a new issue