Skip to content

Commit

Permalink
feat: add reacton component in ipyvuetify
Browse files Browse the repository at this point in the history
Before this file was in reacton, but that makes it difficult to support
multiple ipvuetify versions.
  • Loading branch information
maartenbreddels committed Nov 1, 2023
1 parent 9272d4e commit 76b304c
Show file tree
Hide file tree
Showing 4 changed files with 8,181 additions and 1 deletion.
24 changes: 23 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,39 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 16.x

- name: install build
run: python -m pip install build

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install reacton ipyvue black bqplot jinja2
- name: build wheel
run: python -m build
- uses: actions/upload-artifact@v3

- name: Build component file
run: |
cp ipyvuetify/components.py ipyvuetify/components-previous.py
python -m ipyvuetify.components
diff ipyvuetify/components.py ipyvuetify/components-previous.py
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: ipyvuetify-dist-${{ github.run_number }}
path: |
./dist
./js/*.tgz
- name: Upload components
uses: actions/upload-artifact@v3
with:
name: ipyvuetify-components-${{ github.run_number }}
path: |
./ipyvuetify/components.py
test:
needs: [lint, build]
runs-on: ubuntu-20.04
Expand Down
Loading

0 comments on commit 76b304c

Please sign in to comment.