Skip to content

fix: no loger checking trpc context. #15

fix: no loger checking trpc context.

fix: no loger checking trpc context. #15

Workflow file for this run

name: CI Checks
on:
pull_request:
branches: ["*"]
push:
branches: ["main"]
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
env:
FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Install dependencies
run: pnpm install
- name: Type Check
run: pnpm typecheck
- name: Format Check
run: pnpm format
- name: Lint Check
run: pnpm lint
- name: Run Tests
run: pnpm test
- name: Build
run: pnpm build