Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions .github/workflows/ci-webui-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: WebUI Integration Tests

on:
workflow_dispatch:
push:
branches:
- webui/*

permissions:
contents: read

jobs:
webui_integration:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-node@v6
with:
node-version: 22

- name: Cache npm modules
uses: actions/cache@v4
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-

- name: Install package dependencies
run: npm ci

- name: Install wasm-pack
run: cargo install wasm-pack

- name: Build workspaces
run: npm run build

- name: Install Playwright browsers
run: npx playwright install --with-deps chromium

- name: Run WebUI integration tests
run: npm run test:webui-integration -w @microsoft/fast-html
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "none",
"comment": "chore: add WebUI integration test pipeline for FAST HTML fixtures",
"packageName": "@microsoft/fast-html",
"email": "7559015+janechu@users.noreply.github.com",
"dependentChangeType": "none"
}
Loading
Loading