Skip to content

Add Telegram integration #4

Add Telegram integration

Add Telegram integration #4

Workflow file for this run

name: Feature branch CI
on:
pull_request:
branches: [main]
permissions: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
typecheck:
name: typecheck
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
with:
persist-credentials: false
fetch-depth: 1
- name: Setup
uses: ./.github/actions/setup
- name: Typecheck
run: pnpm typecheck
lint:
name: lint
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
with:
persist-credentials: false
fetch-depth: 1
- name: Setup
uses: ./.github/actions/setup
- name: Lint
run: pnpm lint
format-check:
name: format-check
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
with:
persist-credentials: false
fetch-depth: 1
- name: Setup
uses: ./.github/actions/setup
- name: Format check
run: pnpm format:check
test:
name: test
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
contents: read
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
with:
persist-credentials: false
fetch-depth: 1
- name: Setup
uses: ./.github/actions/setup
- name: Test
run: pnpm test