Skip to content

Commit

Permalink
Merge branch 'canary' into ducanhgh-fix-standalone-no-app-dir
Browse files Browse the repository at this point in the history
  • Loading branch information
DuCanhGH authored Jul 5, 2023
2 parents 72ee49f + a8d09d7 commit 5b77c9b
Show file tree
Hide file tree
Showing 304 changed files with 3,066 additions and 3,046 deletions.
6 changes: 3 additions & 3 deletions .github/actions/validate-docs-links/lib/index.js

Large diffs are not rendered by default.

284 changes: 128 additions & 156 deletions .github/actions/validate-docs-links/src/index.ts

Large diffs are not rendered by default.

25 changes: 24 additions & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,21 @@ jobs:
afterBuild: RUST_BACKTRACE=0 NEXT_EXTERNAL_TESTS_FILTERS="$(pwd)/packages/next-swc/crates/next-dev-tests/tests-manifest.js" TURBOPACK=1 __INTERNAL_CUSTOM_TURBOPACK_BINDINGS="$(pwd)/packages/next-swc/native/next-swc.linux-x64-gnu.node" NEXT_E2E_TEST_TIMEOUT=240000 NEXT_TEST_MODE=dev node run-tests.js --type development --timings -c ${TEST_CONCURRENCY}
secrets: inherit

test-turbopack-integration:
name: test turbopack integration
needs: ['build-native', 'build-next']
strategy:
fail-fast: false
matrix:
group: [1, 2, 3, 4, 5, 6]

uses: ./.github/workflows/build_reusable.yml
with:
nodeVersion: 16
skipForDocsOnly: 'yes'
afterBuild: RUST_BACKTRACE=0 NEXT_EXTERNAL_TESTS_FILTERS="$(pwd)/packages/next-swc/crates/next-dev-tests/tests-manifest.js" TURBOPACK=1 __INTERNAL_CUSTOM_TURBOPACK_BINDINGS="$(pwd)/packages/next-swc/native/next-swc.linux-x64-gnu.node" node run-tests.js --timings -g ${{ matrix.group }}/6 -c ${TEST_CONCURRENCY} --test-pattern '^(integration)/.*\.test\.(js|jsx|ts|tsx)$'
secrets: inherit

test-next-swc-wasm:
name: test next-swc wasm
needs: ['build-native', 'build-next']
Expand Down Expand Up @@ -185,7 +200,14 @@ jobs:
secrets: inherit

report-test-results:
needs: ['test-dev', 'test-prod', 'test-integration', 'test-turbopack-dev']
needs:
[
'test-dev',
'test-prod',
'test-integration',
'test-turbopack-dev',
'test-turbopack-integration',
]
uses: ./.github/workflows/build_reusable.yml
with:
skipForDocsOnly: 'yes'
Expand All @@ -208,6 +230,7 @@ jobs:
'rust-check',
'test-next-swc-wasm',
'test-turbopack-dev',
'test-turbopack-integration',
]

if: always()
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/validate-docs-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
pull_request:
paths:
- 'docs/**.mdx'
- 'errors/*.mdx'

jobs:
link-check:
Expand Down
Loading

0 comments on commit 5b77c9b

Please sign in to comment.