Skip to content

Improving type safety for fetch results #1

Improving type safety for fetch results

Improving type safety for fetch results #1

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
test:
name: "Build & Test: ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- name: Setup bun
uses: oven-sh/setup-bun@v2
- name: Install Dependencies
run: bun install
- name: Run tests
run: bun run test