Skip to content

Commit 810f68c

Browse files
Merge branch 'main' into start_logging_google_analytics_events
2 parents 9ceebef + 6da2c1e commit 810f68c

File tree

131 files changed

+1953
-2754
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+1953
-2754
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
NEXT_PUBLIC_VIZ_URL="https://eu.viz.dust.tt"
2-
NEXT_PUBLIC_GA_TRACKING_ID="G-K9HQ2LE04G"
32
NEXT_PUBLIC_DUST_CLIENT_FACING_URL="https://eu.front-edge.dust.tt"
3+
NEXT_PUBLIC_GTM_TRACKING_ID="GTM-MDWPND4G"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
NEXT_PUBLIC_VIZ_URL="https://eu.viz.dust.tt"
2-
NEXT_PUBLIC_GA_TRACKING_ID="G-K9HQ2LE04G"
32
NEXT_PUBLIC_DUST_CLIENT_FACING_URL="https://eu.dust.tt"
3+
NEXT_PUBLIC_GTM_TRACKING_ID="GTM-MDWPND4G"

.github/configs/us-central1/.env.edge

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
NEXT_PUBLIC_VIZ_URL="https://viz.dust.tt"
2-
NEXT_PUBLIC_GA_TRACKING_ID="G-K9HQ2LE04G"
2+
NEXT_PUBLIC_GTM_TRACKING_ID="GTM-MDWPND4G"
33
NEXT_PUBLIC_DUST_CLIENT_FACING_URL="https://front-edge.dust.tt"

.github/configs/us-central1/.env.prod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
NEXT_PUBLIC_VIZ_URL="https://viz.dust.tt"
2-
NEXT_PUBLIC_GA_TRACKING_ID="G-K9HQ2LE04G"
2+
NEXT_PUBLIC_GTM_TRACKING_ID="GTM-MDWPND4G"
33
NEXT_PUBLIC_DUST_CLIENT_FACING_URL="https://dust.tt"

.github/configs/us-central1/.env.qa

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
NEXT_PUBLIC_VIZ_URL="https://viz.dust.tt"
2-
NEXT_PUBLIC_GA_TRACKING_ID="G-K9HQ2LE04G"
2+
NEXT_PUBLIC_GTM_TRACKING_ID="GTM-P59PR4S6"
33
NEXT_PUBLIC_DUST_CLIENT_FACING_URL="https://front-qa.dust.tt"

.github/workflows/build-and-lint-front.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,18 @@ permissions:
1212
actions: read
1313
checks: write
1414
jobs:
15-
check-eslint:
15+
all-checks:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v3
1919
- uses: actions/setup-node@v3
2020
with:
2121
node-version: 20.13.0
2222
cache: "npm"
23-
cache-dependency-path: ./front/package-lock.json
23+
cache-dependency-path: |
24+
./front/package-lock.json
25+
./types/package-lock.json
26+
./sdks/js/package-lock.json
2427
- name: Build Types
2528
working-directory: types
2629
run: npm install && npm run build
@@ -44,10 +47,12 @@ jobs:
4447
FRONT_DATABASE_URI: "postgres://test:test@localhost:5433/front_test"
4548
NODE_ENV: test
4649
run: npx tsx admin/db.ts && npm run test:ci
47-
- name: Tests Report
50+
- name: Build Tests Report
4851
if: always()
49-
uses: dorny/test-reporter@1a288b62f8b75c0f433cbfdbc2e4800fbae50bd7 # Specific hash because of https://github.com/dorny/test-reporter/issues/67
52+
uses: mikepenz/action-junit-report@v5
5053
with:
51-
name: Front Tests # Name of the check run which will be created
52-
path: front/junit*.xml # Path to test results
53-
reporter: jest-junit # Format of test results
54+
report_paths: "**/front/junit*.xml"
55+
detailed_summary: true
56+
flaky_summary: true
57+
group_suite: true
58+
check_name: Tests Report

.github/workflows/revert-connectors.yml

Lines changed: 0 additions & 75 deletions
This file was deleted.

.github/workflows/revert-core.yml

Lines changed: 0 additions & 75 deletions
This file was deleted.

.github/workflows/revert-front-edge.yml

Lines changed: 0 additions & 75 deletions
This file was deleted.

.github/workflows/revert-front.yml

Lines changed: 0 additions & 75 deletions
This file was deleted.

0 commit comments

Comments
 (0)