Skip to content

Commit a89a1e3

Browse files
committed
fix: correct ci.yml
1 parent 93a04c2 commit a89a1e3

3 files changed

Lines changed: 3 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
node-version: ${{ env.NODE_VERSION }}
2828

2929
- name: Setup pnpm
30-
- uses: pnpm/action-setup@v4
30+
uses: pnpm/action-setup@v4
3131
with:
3232
version: ${{ env.PNPM_VERSION }}
3333

3434
- name: Install dependencies
35-
- run: pnpm install --frozen-lockfile
35+
run: pnpm install --frozen-lockfile
3636

3737
format-check:
3838
runs-on: ubuntu-latest

.github/workflows/notify.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ on:
1212

1313
env:
1414
NODE_VERSION: 20
15-
PNPM_VERSION: 10.0.0
1615

1716
TELEGRAM_BOT_TOKEN: ${{ secrets.TELEGRAM_BOT_TOKEN }}
1817
TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }}
@@ -38,13 +37,8 @@ jobs:
3837
with:
3938
node-version: ${{ env.NODE_VERSION }}
4039

41-
- name: Setup pnpm
42-
uses: pnpm/action-setup@v4
43-
with:
44-
version: ${{ env.PNPM_VERSION }}
45-
4640
- name: Install dependencies
47-
run: pnpm add node-fetch@3.3.1
41+
run: npm install node-fetch
4842

4943
- name: Send Telegram notification
5044
run: node scripts/telegram-notify.js

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ jobs:
6767
build-windows:
6868
name: Build Windows & Create Release
6969
runs-on: windows-latest
70-
needs: quality-gate
7170
timeout-minutes: 45
7271

7372
steps:

0 commit comments

Comments
 (0)