chore: upgrade syntax highlighting dependencies, prism-react-renderer
to v2, react-live
to v4
#2311
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 | |
- name: Set up Node | |
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3 | |
with: | |
node-version: '18' | |
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 |