mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-26 01:33:02 +00:00
47 lines
1.2 KiB
YAML
47 lines
1.2 KiB
YAML
name: Swizzle Tests
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- docusaurus-v**
|
|
paths:
|
|
- packages/**
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
test:
|
|
name: Swizzle
|
|
timeout-minutes: 30
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
action: ['eject', 'wrap']
|
|
variant: ['js', 'ts']
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
- name: Set up Node LTS
|
|
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
|
|
with:
|
|
node-version: lts/*
|
|
cache: yarn
|
|
- name: Installation
|
|
run: yarn
|
|
|
|
# Swizzle all the theme components
|
|
- name: Swizzle (${{matrix.action}} - ${{matrix.variant}})
|
|
run: yarn workspace website test:swizzle:${{matrix.action}}:${{matrix.variant}}
|
|
# Build swizzled site
|
|
- name: Build website
|
|
run: yarn build:website:fast
|
|
# Ensure swizzled site still typechecks
|
|
- name: TypeCheck website
|
|
run: yarn workspace website typecheck
|