We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08c3029 commit 3261837Copy full SHA for 3261837
3 files changed
.github/workflows/build.yml
@@ -28,7 +28,10 @@ jobs:
28
- js
29
- jupyter
30
- rust
31
- runs-on: ubuntu-latest
+ os:
32
+ - ubuntu-latest
33
+ - macos-latest
34
+ runs-on: ${{ matrix.os }}
35
steps:
36
- uses: actions/checkout@v4
37
jupyter/.gitignore.jinja
@@ -134,6 +134,7 @@ _template/labextension
134
# JS
135
js/coverage
136
js/dist
137
+js/lib
138
js/node_modules
139
{{module}}/extension
140
jupyter/pyproject.toml.jinja
@@ -79,6 +79,8 @@ ignore = [
79
"{{module}}/labextension/**",
80
"{{module}}/nbextension/**",
81
"docs/**/*",
82
+ "js/dist/**/*",
83
+ "js/lib/*",
84
]
85
86
[tool.coverage.run]
0 commit comments