Skip to content

Commit fc7cab8

Browse files
author
Admin
committed
Add GitHub Actions CI for plan-review parser prototype tests on PRs\n\nRuns npm ci and npm test to validate prototype behavior.\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 2831e2c commit fc7cab8

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Plan Review Parser Prototype CI
2+
3+
on:
4+
pull_request:
5+
branches: [ main ]
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: Use Node.js
13+
uses: actions/setup-node@v4
14+
with:
15+
node-version: 18
16+
- name: Install dependencies
17+
run: |
18+
npm ci
19+
- name: Run tests
20+
run: |
21+
npm test

0 commit comments

Comments
 (0)