Bump postcss from 8.2.15 to 8.4.31 (#70) #161
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: Build | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '14.x' | |
- name: Install Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
architecture: 'x64' | |
- name: Install dependencies | |
run: python -m pip install jupyterlab~=3.0 | |
- name: Build the extension | |
run: | | |
jlpm | |
jlpm run eslint:check | |
python -m pip install . | |
jupyter labextension list 2>&1 | grep -ie "@jlab-enhanced/cell-toolbar.*OK" | |
python -m jupyterlab.browser_check |