Skip to content

Draft: Add bi-directional comms and run operations in tasks #329

Draft: Add bi-directional comms and run operations in tasks

Draft: Add bi-directional comms and run operations in tasks #329

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- '*'
jobs:
lint_ts:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
- name: Install JupyterLab
run: python -m pip install 'jupyterlab >=4,<5'
- name: Lint TypeScript
run: |
jlpm
jlpm run lint:check
lint_python:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
- name: Install ruff
run: python -m pip install ruff
- name: Lint Python
run: |
ruff --check .