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 973dff7 commit 7d5d0abCopy full SHA for 7d5d0ab
.github/workflows/ci.yml
@@ -34,6 +34,30 @@ jobs:
34
- name: Run qlty code smells analysis
35
run: qlty smells
36
37
+ lint-and-format:
38
+ name: Lint & Format
39
+ runs-on: ubuntu-latest
40
+ timeout-minutes: 15
41
+ steps:
42
+ - name: Checkout
43
+ uses: actions/checkout@v4
44
+
45
+ - name: Base Setup
46
+ uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
47
48
+ - name: Install dependencies
49
+ run: python -m pip install -U "jupyterlab>=4.0.0,<5"
50
51
+ - name: Install node dependencies
52
+ run: jlpm
53
+ env:
54
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
55
56
+ - name: Run lint and format checks
57
+ run: jlpm run lint:check
58
59
60
61
audit-prod:
62
name: Audit - Production
63
runs-on: ubuntu-latest
0 commit comments