-
Notifications
You must be signed in to change notification settings - Fork 2
43 lines (37 loc) · 978 Bytes
/
upgrade.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Autoupdate
on:
schedule:
- cron: 0 0 * * *
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Run CI/CD Pipeline
uses: zource-dev/action@v1
with:
node_version: '22.x'
github_token: ${{ secrets.GITHUB_TOKEN }}
autoupdate: minor
username: Ivan Zakharchanka
email: 3axap4eHko@github.com
npm_token: ${{ secrets.NPM_TOKEN }}
codecov_token: ${{ secrets.CODECOV_TOKEN }}
test:
runs-on: ubuntu-latest
steps:
- name: Setup Node.js 🛠️
uses: actions/setup-node@v4
with:
node-version: 22
registry-url: 'https://registry.npmjs.org/'
- name: Install pnpm 📦
uses: pnpm/action-setup@v3
with:
version: 9
run_install: false
- name: Test published 🔩
run: |
pnpm init
pnpm dlx kafka-console --help
shell: bash