Skip to content

chore: switch to jest tests #3

chore: switch to jest tests

chore: switch to jest tests #3

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Unit tests
on:
pull_request
jobs:
pull-request:
runs-on: ubuntu-latest
strategy:
matrix:
bun-version: [1.0.0]
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
with:
bun-version: ${{ matrix.bun-version }}
- run: bun install
- run: bun test
- run: bun run build
- run: bun run test:integration
- run: bun run lint