Skip to content

bug: #258 jsx shadow root detection using wrong source input contents #81

bug: #258 jsx shadow root detection using wrong source input contents

bug: #258 jsx shadow root detection using wrong source input contents #81

Workflow file for this run

name: Continuous Integration (Docs)
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [22]
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
- name: Installing project dependencies
run: |
npm ci
# Greenwood specific patches
- name: Run patch-package
run: |
npx patch-package
- name: Setup Playwright
run: |
npx playwright install --with-deps
- name: Format
run: |
npm run format:check
- name: Lint
run: |
npm run lint
- name: Build the website
run: |
npm run docs:build
- name: Check Types
run: |
npm run check:types
- name: Test Docs
run: |
npm run test:docs