Skip to content

Build Frontend Packages #3375

Build Frontend Packages

Build Frontend Packages #3375

Workflow file for this run

name: Build Frontend Packages
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
schedule:
- cron: '0 2 * * 1-5' # run on weekdays at 2:00am UTC
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
- name: Install Dependencies
run: |
python -m pip install -U jupyterlab~=4.0 jupyter_packaging~=0.10 "notebook<7"
- name: Install the Voilà Preview JupyterLab extension
run: |
python -m pip install .
- name: Check the extensions are installed
run: |
jupyter nbextension list 2>&1 | grep -ie "voila/extension.*enabled" -
jupyter labextension list 2>&1 | grep -ie "@voila-dashboards/jupyterlab-preview.*enabled.*ok" -
jupyter server extension list 2>&1 | grep -ie "voila\.server_extension.*enabled" -
- name: Browser check
run: |
python -m jupyterlab.browser_check
- name: Lint
run: |
jlpm
jlpm run eslint:check
jlpm run prettier:check