Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 56 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: CI

permissions:
contents: read

on:
pull_request:
branches:
- main
push:
branches:
- main

concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true

jobs:
validate:
name: Lint + Test + Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
submodules: recursive
persist-credentials: false

- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '24'

- name: Enable Corepack
run: corepack enable

- name: Install Yarn
run: corepack prepare yarn@4.12.0 --activate

- name: Install dependencies
run: yarn install --immutable

- name: Generate proto clients
run: yarn generate

- name: Lint
run: yarn lint

- name: Typecheck
run: yarn typecheck

- name: Test
run: yarn test

- name: Build
run: yarn build
2 changes: 1 addition & 1 deletion proto
Submodule proto updated from 58019f to 0d79dd