Skip to content

Commit f78eabd

Browse files
committed
add ci
1 parent c5a8991 commit f78eabd

File tree

4 files changed

+58
-0
lines changed

4 files changed

+58
-0
lines changed

.github/workflows/ci.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Run Autospec Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
run-autospec:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v3
18+
19+
- name: Set up Node.js
20+
uses: actions/setup-node@v3
21+
with:
22+
node-version: "20"
23+
24+
- name: Install dependencies
25+
run: make
26+
27+
- name: Run Autospec Tests
28+
env:
29+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
30+
run: ./tests/shouldPass.sh

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ install:
44
npm install
55
npx husky install
66
npx playwright install
7+
chmod +x ./tests/shouldPass.sh
8+
chmod +x ./tests/shouldFail.sh
79

810
killautospec:
911
pkill -f index.js || true

tests/shouldFail.sh

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# needs implementing

tests/shouldPass.sh

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#!/bin/bash
2+
3+
# grab OPENAI_API_KEY from environment
4+
if [ -z "$OPENAI_API_KEY" ]; then
5+
echo "Please set the OPENAI_API_KEY environment variable."
6+
exit 1
7+
fi
8+
9+
testUrls=(
10+
'https://todomvc.com/examples/react/dist/'
11+
'https://demo.realworld.io/#/'
12+
)
13+
14+
for url in "${testUrls[@]}"; do
15+
echo "Running autospec for $url..."
16+
URL=$url node index
17+
if [ $? -ne 0 ]; then
18+
echo "autospec failed for $url"
19+
exit 1
20+
else
21+
echo "autospec passed for $url"
22+
fi
23+
done
24+
25+
echo "All tests passed successfully."

0 commit comments

Comments
 (0)