chore(deps): update dependency openai to v4.71.1 #6746
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
pull_request: | |
workflow_dispatch: | |
merge_group: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest-16-core | |
strategy: | |
matrix: | |
node_version: [16, 18, 20] | |
env: | |
YARN_IGNORE_NODE: 1 # silence node 16 complaints | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node_version }} | |
cache: yarn | |
- name: Install Task | |
run: curl -sL https://taskfile.dev/install.sh | sudo bash -s -- -b /usr/local/bin/ | |
- name: Lint | |
run: task default lint | |
- name: Test | |
run: task default test |