Skip to content

Commit 7ff2127

Browse files
stainless-app[bot]stainless-bot
authored andcommitted
chore(ci): check for build errors (#1013)
1 parent fe8bbaa commit 7ff2127

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/ci.yml

+19
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,25 @@ jobs:
2727

2828
- name: Check types
2929
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
3049
test:
3150
name: test
3251
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)