Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
Merge pull request #22 from jtpio/gh-actions
Browse files Browse the repository at this point in the history
Switch to GitHub Actions
  • Loading branch information
blink1073 authored Feb 1, 2021
2 parents 5e84d50 + 3bda0c5 commit d604405
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 35 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: CI

on:
push:
branches:
- master
pull_request:
branches: '*'
schedule:
- cron: '0 0 * * *'

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v2
with:
node-version: '14.x'
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: '3.7'
architecture: 'x64'

- name: Setup pip cache
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: pip-3.7-${{ hashFiles('package.json') }}
restore-keys: |
pip-3.7-
pip-
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Setup yarn cache
uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
yarn-
- name: Install dependencies
run: |
python -m pip install jupyterlab~=2.0 cookiecutter jupyter_packaging~=0.7.9
- name: Create pure frontend extension
run: |
cookiecutter . --no-input
cd myextension
jlpm
jlpm run build
jupyter labextension install .
jupyter labextension list 2>&1 | grep -ie "myextension.*OK"
jupyter lab clean
jupyter labextension link .
python -m jupyterlab.browser_check
35 changes: 0 additions & 35 deletions .travis.yml

This file was deleted.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# JupyterLab mimerender-cookiecutter-ts

![Github Actions Status](https://github.com/jupyterlab/mimerenderer-cookiecutter-ts/workflows/CI/badge.svg)

A [cookiecutter](https://github.com/audreyr/cookiecutter) template for creating
a JupyterLab MIME renderer extension in TypeScript. (See also
[mimerender-cookiecutter](https://github.com/jupyterlab/mimerender-cookiecutter)
Expand Down

0 comments on commit d604405

Please sign in to comment.