Skip to content

feat(installs): support Telegram as the alert target #15

feat(installs): support Telegram as the alert target

feat(installs): support Telegram as the alert target #15

Workflow file for this run

name: Lint, Format and Build
on:
push:
branches:
- main
pull_request:
jobs:
check:
name: Lint, format and build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Install packages
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Format check
run: pnpm fmt:check
- name: Typecheck + dry-run build all workers
run: pnpm -r --if-present typecheck && pnpm -r exec wrangler deploy --dry-run --outdir /tmp/wrangler-build