mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-25 17:22:50 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
44 lines
1.5 KiB
YAML
44 lines
1.5 KiB
YAML
name: Windows Tests
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- website/**
|
|
|
|
jobs:
|
|
windows-test:
|
|
name: Windows Tests
|
|
timeout-minutes: 30
|
|
runs-on: windows-latest
|
|
strategy:
|
|
matrix:
|
|
node: ['14', '16', '17']
|
|
steps:
|
|
- name: Support longpaths
|
|
run: git config --system core.longpaths true
|
|
- uses: actions/checkout@v3
|
|
- name: Use Node.js ${{ matrix.node }}
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
- name: Installation
|
|
run: yarn || yarn || yarn # 3 attempts to avoid timeout errors...
|
|
- name: Docusaurus Jest Tests
|
|
run: yarn test
|
|
- name: Create a deep path
|
|
# https://github.com/facebook/docusaurus/pull/4899
|
|
# https://github.com/facebook/docusaurus/issues/5793
|
|
run: |
|
|
mkdir -p "website/_dogfooding/_pages tests/deep-file-path-test/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar/foo/bar"
|
|
cd "$_"
|
|
echo "# hello" > test-file.md
|
|
# Lightweight version of tests-swizzle.yml workflow, but for Windows
|
|
- name: Swizzle Wrap TS
|
|
run: yarn workspace website test:swizzle:wrap:ts
|
|
- name: Docusaurus Build
|
|
run: yarn build:website:fast
|
|
- name: TypeCheck website
|
|
run: yarn workspace website typecheck
|