Skip to content

chore(ci): add @actions for local GH actions #8

chore(ci): add @actions for local GH actions

chore(ci): add @actions for local GH actions #8

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
merge_group:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: Typecheck & Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Typecheck (all workspaces)
run: yarn ts:check
- name: Build (all workspaces)
run: yarn build