Skip to content

Commit

Permalink
Merge branch 'canary' into mknichel/debug-trace-tags-to-next-build
Browse files Browse the repository at this point in the history
  • Loading branch information
ijjk committed Oct 27, 2023
2 parents d81056c + 08fdc1e commit e549bd9
Show file tree
Hide file tree
Showing 1,326 changed files with 46,952 additions and 20,227 deletions.
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ bench/nested-deps/**
bench/nested-deps-app-router/**
packages/next-bundle-analyzer/index.d.ts
examples/with-typescript-graphql/lib/gql/
test/development/basic/hmr/components/parse-error.js
test/development/basic/hmr/components/parse-error.js
20 changes: 2 additions & 18 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,17 +100,8 @@
}
],
"no-use-before-define": "off",
"@typescript-eslint/no-use-before-define": [
"warn",
{
"functions": true,
"classes": true,
"variables": true,
"enums": true,
"typedefs": true
}
],
"no-useless-constructor": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-useless-constructor": "warn",
"@typescript-eslint/prefer-literal-enum-member": "error"
}
Expand Down Expand Up @@ -318,14 +309,7 @@
"ignoreRestSiblings": true
}
],
"no-use-before-define": [
"warn",
{
"functions": false,
"classes": false,
"variables": false
}
],
"no-use-before-define": "off",
"no-useless-computed-key": "warn",
"no-useless-concat": "warn",
"no-useless-constructor": "warn",
Expand Down
22 changes: 22 additions & 0 deletions .github/actions/next-integration-stat/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: 'Next.js integration status'
author: Turbopack team
description: 'Display next.js integration test failure status'

inputs:
# Github token to use to create test report comment. If not specified, the default token will be used with username 'github-actions'
token:
default: ${{ github.token }}

# The base of the test results to compare against. If not specified, will try to compare with latest main branch's test results.
diff_base:
default: 'main'

# Include full test failure message in the report.
# This is currently disabled as we have too many failed test cases, causes
# too many report comment generated.
expand_full_result_message:
default: 'false'

runs:
using: node16
main: index.js

0 comments on commit e549bd9

Please sign in to comment.