Skip to content

Commit 4d6ac64

Browse files
committed
update tests
1 parent 5f50637 commit 4d6ac64

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/integrationTests.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ on:
1010
jobs:
1111
integration-tests:
1212
runs-on: ubuntu-latest
13-
env:
14-
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
13+
container:
14+
image: node:23-bullseye
1515
steps:
1616
- uses: actions/checkout@v4
1717

.github/workflows/smoke-tests.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: smoke-test
2+
23
on:
34
push:
45
branches:
@@ -12,10 +13,9 @@ jobs:
1213
runs-on: ubuntu-latest
1314
container:
1415
image: node:23.3-bullseye
15-
env:
16-
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
1716
steps:
1817
- uses: actions/checkout@v4
18+
1919
- name: Cache pnpm
2020
uses: actions/cache@v4
2121
with:
@@ -31,4 +31,6 @@ jobs:
3131
version: 9.15.0
3232

3333
- name: Run smoke tests
34+
env:
35+
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
3436
run: pnpm run smokeTests

0 commit comments

Comments
 (0)