parent
6568cb19a9
commit
902074022a
15 changed files with 16 additions and 12 deletions
3
.github/workflows/desktop-lint.yml
vendored
3
.github/workflows/desktop-lint.yml
vendored
|
@ -25,7 +25,6 @@ jobs:
|
|||
cache: "yarn"
|
||||
cache-dependency-path: "desktop/yarn.lock"
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install && yarn run next telemetry disable
|
||||
- run: yarn install
|
||||
|
||||
- run: yarn lint
|
||||
|
|
2
.github/workflows/docs-deploy.yml
vendored
2
.github/workflows/docs-deploy.yml
vendored
|
@ -30,7 +30,7 @@ jobs:
|
|||
cache-dependency-path: "docs/yarn.lock"
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install && yarn run next telemetry disable
|
||||
run: yarn install
|
||||
|
||||
- name: Build production site
|
||||
# Will create docs/.vitepress/dist
|
||||
|
|
2
.github/workflows/docs-verify-build.yml
vendored
2
.github/workflows/docs-verify-build.yml
vendored
|
@ -31,7 +31,7 @@ jobs:
|
|||
cache-dependency-path: "docs/yarn.lock"
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install && yarn run next telemetry disable
|
||||
run: yarn install
|
||||
|
||||
- name: Build production site
|
||||
run: yarn build
|
||||
|
|
2
.github/workflows/web-deploy-one.yml
vendored
2
.github/workflows/web-deploy-one.yml
vendored
|
@ -37,7 +37,7 @@ jobs:
|
|||
cache-dependency-path: "web/yarn.lock"
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install && yarn run next telemetry disable
|
||||
run: yarn install
|
||||
|
||||
- name: Build ${{ inputs.app }}
|
||||
run: yarn build:${{ inputs.app }}
|
||||
|
|
2
.github/workflows/web-deploy-preview.yml
vendored
2
.github/workflows/web-deploy-preview.yml
vendored
|
@ -37,7 +37,7 @@ jobs:
|
|||
cache-dependency-path: "web/yarn.lock"
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install && yarn run next telemetry disable
|
||||
run: yarn install
|
||||
|
||||
- name: Build ${{ inputs.app }}
|
||||
run: yarn build:${{ inputs.app }}
|
||||
|
|
2
.github/workflows/web-deploy-staff.yml
vendored
2
.github/workflows/web-deploy-staff.yml
vendored
|
@ -32,7 +32,7 @@ jobs:
|
|||
cache-dependency-path: "web/yarn.lock"
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install && yarn run next telemetry disable
|
||||
run: yarn install
|
||||
|
||||
- name: Build staff
|
||||
run: yarn build:staff
|
||||
|
|
2
.github/workflows/web-deploy-staging.yml
vendored
2
.github/workflows/web-deploy-staging.yml
vendored
|
@ -31,7 +31,7 @@ jobs:
|
|||
cache-dependency-path: "web/yarn.lock"
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install && yarn run next telemetry disable
|
||||
run: yarn install
|
||||
|
||||
- name: Build photos
|
||||
run: yarn build:photos
|
||||
|
|
2
.github/workflows/web-deploy.yml
vendored
2
.github/workflows/web-deploy.yml
vendored
|
@ -41,7 +41,7 @@ jobs:
|
|||
cache-dependency-path: "web/yarn.lock"
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install && yarn run next telemetry disable
|
||||
run: yarn install
|
||||
|
||||
- name: Build photos
|
||||
run: yarn build:photos
|
||||
|
|
3
.github/workflows/web-lint.yml
vendored
3
.github/workflows/web-lint.yml
vendored
|
@ -25,7 +25,6 @@ jobs:
|
|||
cache: "yarn"
|
||||
cache-dependency-path: "web/yarn.lock"
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install && yarn run next telemetry disable
|
||||
- run: yarn install
|
||||
|
||||
- run: yarn lint
|
||||
|
|
|
@ -46,7 +46,7 @@ jobs:
|
|||
run: yarn config set network-timeout 900000 -g
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install && yarn run next telemetry disable
|
||||
run: yarn install
|
||||
|
||||
- name: Install libarchive-tools for pacman build
|
||||
if: startsWith(matrix.os, 'ubuntu')
|
||||
|
|
1
web/apps/accounts/.env
Normal file
1
web/apps/accounts/.env
Normal file
|
@ -0,0 +1 @@
|
|||
NEXT_TELEMETRY_DISABLED = 1
|
1
web/apps/auth/.env
Normal file
1
web/apps/auth/.env
Normal file
|
@ -0,0 +1 @@
|
|||
NEXT_TELEMETRY_DISABLED = 1
|
1
web/apps/cast/.env
Normal file
1
web/apps/cast/.env
Normal file
|
@ -0,0 +1 @@
|
|||
NEXT_TELEMETRY_DISABLED = 1
|
1
web/apps/payments/.env
Normal file
1
web/apps/payments/.env
Normal file
|
@ -0,0 +1 @@
|
|||
NEXT_TELEMETRY_DISABLED = 1
|
|
@ -88,3 +88,5 @@
|
|||
# NEXT_PUBLIC_ENTE_TEST_EXPECTED_JSON=`cat path/to/expected.json` yarn dev
|
||||
#
|
||||
# NEXT_PUBLIC_ENTE_TEST_EXPECTED_JSON = {}
|
||||
|
||||
NEXT_TELEMETRY_DISABLED = 1
|
||||
|
|
Loading…
Add table
Reference in a new issue