Skip to content

Commit 4fc7ed9

Browse files
committed
Setup github action with github-dependents-info
1 parent 41ff354 commit 4fc7ed9

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

.github/workflows/update.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Update
2+
run-name: Update deps list
3+
on:
4+
workflow_dispatch:
5+
push:
6+
7+
concurrency:
8+
group: ${{ github.ref }}-${{ github.workflow }}
9+
cancel-in-progress: true
10+
11+
jobs:
12+
Setup:
13+
name: Setup
14+
runs-on: ubuntu-latest
15+
permissions:
16+
contents: write
17+
pull-requests: write
18+
19+
steps:
20+
- name: Checkout code
21+
uses: actions/[email protected]
22+
23+
- name: Setup Node.js
24+
uses: actions/[email protected]
25+
26+
with:
27+
cache: npm
28+
check-latest: true
29+
node-version-file: .nvmrc
30+
31+
- name: Install dependencies
32+
run: npm ci
33+
34+
- name: Set up Python
35+
uses: actions/setup-python@v5
36+
37+
- name: Install github-dependents-info
38+
run: pip install -U github-dependents-info
39+
40+
- name: Check gdi is installed
41+
run: github-dependents-info -v

test.md

Whitespace-only changes.

0 commit comments

Comments
 (0)