Skip to content

Commit 7fda378

Browse files
committed
Update Node.js version in GitHub Actions workflow
- Updated Node.js from 12 to 16 to fix compatibility with [email protected] - Updated actions/setup-node from v2 to v3 - Removed Telegram notification as requested
1 parent 18eb039 commit 7fda378

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ jobs:
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v2
15-
- uses: actions/setup-node@v1
15+
- name: Setup Node.js
16+
uses: actions/setup-node@v3
1617
with:
17-
node-version: 12
18+
node-version: '16'
1819
- run: yarn install
1920
- run: yarn download
2021
- run: cp .env.example .env
@@ -28,11 +29,3 @@ jobs:
2829
uses: coverallsapp/github-action@master
2930
with:
3031
github-token: ${{ secrets.GITHUB_TOKEN }}
31-
- name: Telegram Failure Notification
32-
uses: appleboy/[email protected]
33-
if: failure()
34-
with:
35-
message: ❗ Build failed for [${{ github.repository }}](https://github.com/${{ github.repository }}/actions) because of ${{ github.actor }}
36-
format: markdown
37-
to: ${{ secrets.TELEGRAM_CHAT_ID }}
38-
token: ${{ secrets.TELEGRAM_BOT_TOKEN }}

0 commit comments

Comments
 (0)