File tree Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Original file line number Diff line number Diff line change
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
+
16
+ steps :
17
+ - name : Checkout code
18
+
19
+
20
+ - name : Setup Node.js
21
+
22
+
23
+ with :
24
+ cache : npm
25
+ check-latest : true
26
+ node-version-file : .nvmrc
27
+
28
+ - name : Install dependencies
29
+ run : npm ci
30
+
31
+ - name : Set up Python
32
+ uses : actions/setup-python@v5
33
+
34
+ - name : Install github-dependents-info
35
+ run : pip install -U github-dependents-info
36
+ Get-latest-raw-deps :
37
+ name : Get latests deps
38
+ runs-on : ubuntu-latest
39
+ permissions :
40
+ contents : write
41
+ pull-requests : write
42
+
43
+ steps :
44
+ - name : Pipe our deps to a json file
45
+ run : github-dependents-info --repo alphagov/govuk-frontend--sort stars --json > raw-deps.json
46
+
47
+ - name : testing testing
48
+ run : cat raw-deps.json
You can’t perform that action at this time.
0 commit comments