fix(telegram): markdown not being correctly set and release #2439
Workflow file for this run
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: Codestyle | |
| on: [pull_request] | |
| jobs: | |
| prettier: | |
| name: Run Prettier on codebase | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@master | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: 'yarn' | |
| - name: Install Dependencies | |
| run: | | |
| yarn | |
| - name: Run Prettier | |
| run: | | |
| yarn prettier | |
| eslint: | |
| name: Run ESLint on codebase | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@master | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: 'yarn' | |
| - name: Install Dependencies | |
| run: | | |
| yarn --immutable | |
| - name: Run ESLint | |
| run: | | |
| yarn eslint |