Skip to content

Update OpenAI version to v4 and add JS tracing #39

Update OpenAI version to v4 and add JS tracing

Update OpenAI version to v4 and add JS tracing #39

Workflow file for this run

name: js
on:
pull_request:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm install
# @TODO: Re-enable this once cache is integrated with JS tests.
# - run: npm run test
- run: npm run build