Skip to content

Functions could differ when asserting component #6

Functions could differ when asserting component

Functions could differ when asserting component #6

Workflow file for this run

name: Bun CI
on:
push:
paths-ignore:
- "*.md"
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: "0.5.9"
- name: Cache Dependencies
uses: actions/cache@v3
with:
path: |
~/.bun/install/cache
~/work/react-assert/react-assert/bun.lockb
key: ${{ runner.os }}-bun-cache-v3-${{ hashFiles('package.json') }}
restore-keys: |
${{ runner.os }}-bun-cache-v3-
- name: Run tests
run: |
bun install
bun test