mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-26 01:33:02 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.0.1 to 3.0.2.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](dcd71f6466...2541b1294d)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
46 lines
1.1 KiB
YAML
46 lines
1.1 KiB
YAML
name: Swizzle Tests
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
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@2541b1294d2704b0964813337f33b291d3f8596b # v3
|
|
- name: Set up Node
|
|
uses: actions/setup-node@56337c425554a6be30cdef71bf441f15be286854 # v3
|
|
with:
|
|
node-version: '16'
|
|
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
|