This pull request makes changes to the .github/workflows/test.yml file, which configures continuous integration (CI) and testing workflows.
Summary
The PR renames the build job to node-test and introduces a new job called bun-test. These changes enhance the testing process by incorporating the bun package manager and specifying the necessary environment variables.
Changes
Renames the build job to node-test.
Introduces a new job called bun-test:
Runs on ubuntu-latest.
Sets up bun using oven-sh/setup-bun@v2 with the latest bun-version.
Installs dependencies using bun install --frozen-lockfile.
Runs tests using bun run jest, with specified environment variables for Cohere, AWS, and jest.
This pull request makes changes to the
.github/workflows/test.yml
file, which configures continuous integration (CI) and testing workflows.Summary
The PR renames the
build
job tonode-test
and introduces a new job calledbun-test
. These changes enhance the testing process by incorporating thebun
package manager and specifying the necessary environment variables.Changes
build
job tonode-test
.bun-test
:ubuntu-latest
.bun
usingoven-sh/setup-bun@v2
with the latestbun-version
.bun install --frozen-lockfile
.bun run jest
, with specified environment variables for Cohere, AWS, and jest.