Skip to content

Upgrade to http2

Upgrade to http2 #7

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- main
- develop
types:
- opened
- synchronize
- reopened
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: blacksmith-4vcpu-ubuntu-2404
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Type check (tsc)
run: bunx tsc --noEmit
- name: Run tests
run: bun run test