Skip to content

feat(core-api,console): add Telegram bot pairing flow #2472

feat(core-api,console): add Telegram bot pairing flow

feat(core-api,console): add Telegram bot pairing flow #2472

Workflow file for this run

name: Check Test
on:
push:
branches:
- '**'
paths:
- 'core-api/**'
- 'package*.json'
- 'tsconfig*.json'
pull_request:
branches:
- '**'
paths:
- 'core-api/**'
- 'package*.json'
- 'tsconfig*.json'
jobs:
test:
name: Check Test
runs-on: ubuntu-latest
defaults:
run:
working-directory: core-api
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
- name: Install dependencies
run: npm ci --ignore-scripts
working-directory: core-api
- name: Run tests
run: npm run test
working-directory: core-api