Skip to content

feat(otel): set vercel.deployment_id as a resource attribute (#102) #182

feat(otel): set vercel.deployment_id as a resource attribute (#102)

feat(otel): set vercel.deployment_id as a resource attribute (#102) #182

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