Skip to content

Commit

Permalink
feat: add reacton component in ipyvuetify (#284)
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 9e8334b commit 2c5cbb4
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
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[generate]" ipyvue
- 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

0 comments on commit 2c5cbb4

Please sign in to comment.