We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe8bbaa commit 7ff2127Copy full SHA for 7ff2127
.github/workflows/ci.yml
@@ -27,6 +27,25 @@ jobs:
27
28
- name: Check types
29
run: ./scripts/lint
30
+
31
+ build:
32
+ name: build
33
+ runs-on: ubuntu-latest
34
+ if: github.repository == 'openai/openai-node'
35
36
+ steps:
37
+ - uses: actions/checkout@v4
38
39
+ - name: Set up Node
40
+ uses: actions/setup-node@v4
41
+ with:
42
+ node-version: '18'
43
44
+ - name: Install dependencies
45
+ run: yarn install
46
47
+ - name: Check build
48
+ run: ./scripts/build
49
test:
50
name: test
51
runs-on: ubuntu-latest
0 commit comments