Skip to content

feat: added iframe component #12

feat: added iframe component

feat: added iframe component #12

Workflow file for this run

name: ci
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: update package manager & install python3 environment
run: |
sudo pip install poetry
poetry install --with build
- name: install npm environment
run: |
cd ui
npm install
- name: run continuous integration pipeline
run: |
poetry run alfred ci