Skip to content

fix(rivetkit): fix c.client not respecting correct origin #4195

fix(rivetkit): fix c.client not respecting correct origin

fix(rivetkit): fix c.client not respecting correct origin #4195

Workflow file for this run

name: javascript
on:
pull_request:
paths:
- frontend/**
- engine/sdks/typescript/**
- rivetkit-typescript/**
jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: biomejs/setup-biome@v2
with:
version: latest
- name: Run Biome
run: biome check . --reporter=github
tsc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- run: pnpm install
- run: pnpm turbo build:engine
- name: Run TypeScript Compiler
run: pnpm ts-check
working-directory: ./frontend