Bump @types/node from 15.14.9 to 22.10.2 #308
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
jobs: | |
success: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run success | |
run: exit 0 | |
- name: Send message to Telegram | |
uses: ./ | |
if: always() | |
env: | |
TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_TOKEN }} | |
TELEGRAM_CHAT: ${{ secrets.TELEGRAM_CHAT }} | |
with: | |
status: ${{job.status}} | |
fail: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run fail | |
run: exit 1 | |
- name: Send message to Telegram | |
uses: ./ | |
if: always() | |
env: | |
TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_TOKEN }} | |
TELEGRAM_CHAT: ${{ secrets.TELEGRAM_CHAT }} | |
with: | |
status: ${{job.status}} | |
no-status: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run success | |
run: exit 0 | |
- name: Send message to Telegram | |
uses: ./ | |
if: always() | |
env: | |
TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_TOKEN }} | |
TELEGRAM_CHAT: ${{ secrets.TELEGRAM_CHAT }} | |
alternative-template: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run success | |
run: exit 0 | |
- name: Send message to Telegram | |
uses: ./ | |
if: always() | |
env: | |
TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_TOKEN }} | |
TELEGRAM_CHAT: ${{ secrets.TELEGRAM_CHAT }} | |
with: | |
commit_template: ./templates/commit-alternative.mustache | |
status: ${{job.status}} |