diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 642c89d86..ad730d4a5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,6 +26,17 @@ jobs: - name: Run linters run: | npm run format + - name: Check if anything changed + run: | + git_status="`LC_ALL=C git status --porcelain --ignore-submodules -unormal 2>&1`" + if [ -n "$git_status" ]; then + printf "Some file(s) changed as the result of formatting, this means that you need to run the formatter on your patch.\n" + printf "Here is what changed:\n" + printf -- "$git_status\n\n" + printf "And here is the diff:\n" + git diff -U8 + exit 1 + fi build: name: Build runs-on: macos-latest diff --git a/about.html b/about.html index 24f2cab81..144802917 100644 --- a/about.html +++ b/about.html @@ -18,7 +18,10 @@

About Speedometer 3

Speedometer 3 is a benchmark for web browsers that measures Web application responsiveness by timing simulated user interactions on various workloads.

-

It's developed as an open source project, with decisions being made under a multistakeholder governance model between the three widely distributed web browser engine projects. +

+ It's developed as an open source project, with decisions being made under a multistakeholder governance model between the three widely distributed + web browser engine projects. +

The following high level user journeys are implemented in the current version. Each of these journeys has one or more workloads which test important aspects of it - for example commonly used patterns, frameworks, or technologies. diff --git a/resources/todomvc/architecture-examples/angular/angular.json b/resources/todomvc/architecture-examples/angular/angular.json index 27029aafb..83273630c 100644 --- a/resources/todomvc/architecture-examples/angular/angular.json +++ b/resources/todomvc/architecture-examples/angular/angular.json @@ -94,6 +94,6 @@ } }, "cli": { - "analytics": false + "analytics": false } }