Skip to content

Report branch host and use it for context propagation (#35) #40

Report branch host and use it for context propagation (#35)

Report branch host and use it for context propagation (#35) #40

Workflow file for this run

name: Type Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: "type-check"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Run type-check
run: pnpm type-check