Skip to content

ci: we have badges

ci: we have badges #3

Workflow file for this run

name: Run tests
on:
pull_request:
types:
- opened
push:
branches:
- master
paths:
- '.github/workflows/tests.yml'
- 'bun.lockb'
- '**.ts'
env:
HUSKY: 0
jobs:
unit-tests:
runs-on: ubuntu-22.04
strategy:
fail-fast: true
matrix:
node-version: [20, 22, 23]
name: NodeJS ${{ matrix.node-version }}
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Running tests
run: bun test