Skip to content

Bump openai from 4.68.1 to 4.75.0 #88

Bump openai from 4.68.1 to 4.75.0

Bump openai from 4.68.1 to 4.75.0 #88

Workflow file for this run

name: GitHub CI
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
on:
push:
paths-ignore:
- "docs/**"
- "*.md"
pull_request:
paths-ignore:
- "docs/**"
- "*.md"
jobs:
linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: npm install --ignore-scripts
- name: Lint code
run: npm run lint
test:
needs: linter
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [20]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install --ignore-scripts
- name: Run tests & generate coverage
run: npm run test:ci
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
- name: Upload coverage to Coveralls
run: npm run coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}