Rebase authors #167
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: Build and install extension | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
# cache: 'yarn' | |
- name: Install yarn | |
run: | | |
npm install -g corepack | |
corepack enable | |
yarn -v | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
architecture: 'x64' | |
- name: Setup pip cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: pip-3.11-${{ hashFiles('package.json') }} | |
restore-keys: | | |
pip-3.11- | |
pip- | |
- name: Install Python dependencies | |
run: python -m pip install -r requirements.txt | |
shell: bash | |
- name: Clear NPM Cache | |
run: python -m pip cache purge | |
shell: bash | |
- name: Install Extension | |
run: | | |
set -eux | |
python -m pip install . | |
shell: bash | |
# install_extension: | |
# runs-on: ubuntu-latest | |
# needs: build | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Download artifact | |
# uses: actions/download-artifact@v3 | |
# with: | |
# name: python-dependencies | |
# path: . | |
# - run: | | |
# set -eux | |
# pip list | |
# export PATH="$HOME/.local/bin:$PATH" | |
# jupyterlab --version | |
# python -m pip install . |