Skip to content

Commit 378f6c8

Browse files
committed
Add github workflow
1 parent 6d466bb commit 378f6c8

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/tests.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,24 @@ jobs:
6767
path: |
6868
ui-tests/test-results
6969
ui-tests/playwright-report
70+
71+
js:
72+
name: js
73+
runs-on: ubuntu-latest
74+
75+
steps:
76+
- name: Checkout
77+
uses: actions/checkout@v4
78+
79+
- name: Base Setup
80+
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
81+
82+
- name: Install nodejs dependencies
83+
run: |
84+
set -eux
85+
pip install "jupyterlab>=4.4.0"
86+
jlpm install
87+
88+
- name: Execute tests
89+
run: |
90+
jlpm test

0 commit comments

Comments
 (0)