Skip to content

Chore: Update README #41

Chore: Update README

Chore: Update README #41

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
tags-ignore: ["v*"]
jobs:
build:
name: Build
uses: andrewscwei/workflows/.github/workflows/node-build.yml@v1
with:
service-image: rabbitmq:3.12.7
service-port: 5672:5672
test-command: npm test
notify:
name: Notify
needs: [build]
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- uses: andrewscwei/telegram-action@v1
with:
success: ${{ needs.build.result == 'success' }}
cancelled: ${{ needs.build.result == 'cancelled' }}
bot-token: ${{ secrets.TELEGRAM_DEVOPS_BOT_TOKEN }}
chat-id: ${{ secrets.TELEGRAM_DEVOPS_CHAT_ID }}