We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 491c866 commit dc1e389Copy full SHA for dc1e389
.github/workflows/node-hub-ci-cd.yml
@@ -18,12 +18,30 @@ jobs:
18
outputs:
19
folders: ${{ steps.jobs.outputs.folders }}
20
steps:
21
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v4
22
23
- id: jobs
24
uses: kmanimaran/list-folder-action@v4
25
with:
26
path: ./node-hub
27
+
28
+ lint:
29
+ runs-on: ubuntu-24.04
30
+ needs: [find-jobs]
31
+ name: Lint
32
+ steps:
33
34
35
+ - name: Install the latest version of uv
36
+ uses: astral-sh/setup-uv@v5
37
+ with:
38
+ enable-cache: true
39
40
+ - name: Run linting
41
+ working-directory: node-hub/${{ matrix.folder }}
42
+ run: |
43
+ uv tool install ruff
44
+ ruff check .
45
46
ci:
47
runs-on: ${{ matrix.platform }}
0 commit comments