fix: Remove Telegram dependency from GitHub Actions workflow #3
This file contains hidden or 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: build | |
| on: | |
| push: | |
| branches: ['*'] | |
| tags: ['v[0-9]+.[0-9]+.[0-9]+'] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: 12 | |
| - run: yarn install | |
| - run: yarn download | |
| - run: cp .env.example .env | |
| - run: npx ganache-cli > /dev/null & | |
| - run: npm run migrate:dev | |
| - run: yarn test | |
| - run: node src/cli.js test | |
| - run: yarn lint | |
| - run: yarn coverage | |
| - name: Coveralls | |
| uses: coverallsapp/github-action@master | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Telegram Failure Notification | |
| uses: appleboy/[email protected] | |
| if: failure() | |
| with: | |
| message: ❗ Build failed for [${{ github.repository }}](https://github.com/${{ github.repository }}/actions) because of ${{ github.actor }} | |
| format: markdown | |
| to: ${{ secrets.TELEGRAM_CHAT_ID }} | |
| token: ${{ secrets.TELEGRAM_BOT_TOKEN }} |