Skip to content

Commit aba3216

Browse files
authored
Add downstream test workflow (#232)
1 parent b964ee9 commit aba3216

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/downstream.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Test downstream projects
2+
3+
on:
4+
push:
5+
branches: "main"
6+
pull_request:
7+
branches: "*"
8+
9+
jobs:
10+
tests:
11+
runs-on: ubuntu-latest
12+
timeout-minutes: 15
13+
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v2
17+
18+
- name: Base Setup
19+
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
20+
21+
- name: Test jupyterlab
22+
uses: jupyterlab/maintainer-tools/.github/actions/downstream-test@v1
23+
with:
24+
package_name: jupyterlab
25+
test_command: "python -m jupyterlab.browser_check --no-browser-test"

0 commit comments

Comments
 (0)