We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7100fe7 commit 9c9d026Copy full SHA for 9c9d026
.github/workflows/integrationTests.yaml
@@ -10,8 +10,8 @@ on:
10
jobs:
11
integration-tests:
12
runs-on: ubuntu-latest
13
- env:
14
- OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
+ container:
+ image: node:23-bullseye
15
steps:
16
- uses: actions/checkout@v4
17
.github/workflows/smoke-tests.yml
@@ -1,4 +1,5 @@
1
name: smoke-test
2
+
3
on:
4
push:
5
branches:
@@ -11,9 +12,7 @@ jobs:
smoke-tests:
container:
- image: node:23-bullseye
+ image: node:23.3-bullseye
18
19
@@ -32,4 +31,6 @@ jobs:
32
31
version: 9.15.0
33
34
- name: Run smoke tests
+ env:
35
+ OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
36
run: pnpm run smokeTests
0 commit comments