Skip to content

fix: telegram env setup #6

fix: telegram env setup

fix: telegram env setup #6

Workflow file for this run

on:
pull_request:
types: [opened, synchronize]
push:
branches:
- main
workflow_dispatch:
name: Verify Lint, Tests and Build
jobs:
test:
name: Verify Lint, Tests And Build
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: npm install
- run: npm run format
- run: npm run test
- run: npm run build