Skip to content

Add UI tests

Add UI tests #202

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
pull_request:
branches:
- '*'
permissions:
actions: write
contents: write
deployments: write
pages: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: prefix-dev/setup-pixi@v0.9.3
with:
pixi-version: v0.59.0
cache: true
- name: Build the JupyterLite site
shell: bash -l {0}
run: |
cp README.md content
pixi run build
- name: Upload dist
uses: actions/upload-pages-artifact@v3
with:
path: ./dist
deploy:
needs: build
if: github.ref == 'refs/heads/main'
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4