/
githubmirror
/
docusaurus
Обзор
Документация
Войти
/
githubmirror
/
docusaurus
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/tests-swizzle.yml
48 строк
1 KB
dependabot[bot]
chore(deps): bump actions/setup-node from 6.4.0 to 7.0.0 (#12293)
23 июл 2026, 12:28
Не верифицирован
23 июл 2026, 12:28
3f96ebc
Код
Авторство
О чём код?
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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - name: Install pnpm uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 - name: Set up Node LTS uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: node-version: lts/* cache: pnpm - name: Installation run: pnpm install --frozen-lockfile || pnpm install --frozen-lockfile || pnpm install --frozen-lockfile # Swizzle all the theme components - name: Swizzle (${{matrix.action}} - ${{matrix.variant}}) run: pnpm --filter website test:swizzle:${{matrix.action}}:${{matrix.variant}} # Build swizzled site - name: Build website run: pnpm build:website:fast # Ensure swizzled site still typechecks - name: TypeCheck website run: pnpm --filter website typecheck --project tsconfig.skipLibCheck.json