Skip to content

chore: Ignore react compiler error #5117

chore: Ignore react compiler error

chore: Ignore react compiler error #5117

Workflow file for this run

name: Typescript CI
on:
push:
branches: [ main, playground ]
pull_request:
paths:
- "app/**"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: test-typescript-${{ github.head_ref }}
cancel-in-progress: true
jobs:
ci:
name: CI Typescript
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install PNPM
uses: pnpm/action-setup@v3
with:
version: 9.8.0
- name: Use Node.js
uses: actions/setup-node@v4
with:
cache-dependency-path: ./app/pnpm-lock.yaml
node-version: lts/*
cache: "pnpm"
- name: Install dependencies
working-directory: ./app
run: pnpm install --frozen-lockfile
- name: Type Check
working-directory: ./app
run: pnpm run typecheck
- name: Formatting
working-directory: ./app
run: |
pnpm run prettier:check
- name: Lint
working-directory: ./app
run: |
pnpm run lint
- name: Relay Codegen
working-directory: ./app
run: |
pnpm run build:relay
git diff --exit-code
- name: Test
working-directory: ./app
run: |
pnpm run test