If model_provider_id or embeddings_provider_id is not associated with models, set it to None #387
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: JS Lint | |
on: | |
- pull_request | |
jobs: | |
js_lint: | |
name: JS Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 | |
with: | |
python_version: "3.11.x" | |
- name: Install JupyterLab | |
run: pip install jupyterlab~=4.0 | |
- name: Install JS dependencies | |
run: jlpm | |
- name: Run JS Lint | |
run: jlpm lerna run lint:check |