Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -269,14 +269,15 @@ jobs:
with:
cache_mode: ro

- name: module-size tests (non-sharded)
if: matrix.shard == 0
id: test-no-shard
run: yarn nx ${{ github.event.inputs.nx_command || 'affected' }} -t test:e2e -c staging --exclude '!tag:module-size' --exclude 'tag:sharding' --exclude all
- name: module-size tests
if: matrix.shard != 0
id: test
run: yarn nx ${{ github.event.inputs.nx_command || 'affected' }} -t test:e2e -c staging --exclude '!tag:module-size' --exclude 'tag:non-sharding' --exclude all --shard=${{ matrix.shard }}/$((${{ strategy.job-total }} - 1))
# Disable now that module size tests are reported on PRs
# - name: module-size tests (non-sharded)
# if: matrix.shard == 0
# id: test-no-shard
# run: yarn nx ${{ github.event.inputs.nx_command || 'affected' }} -t test:e2e -c staging --exclude '!tag:module-size' --exclude 'tag:sharding' --exclude all
# - name: module-size tests
# if: matrix.shard != 0
# id: test
# run: yarn nx ${{ github.event.inputs.nx_command || 'affected' }} -t test:e2e -c staging --exclude '!tag:module-size' --exclude 'tag:non-sharding' --exclude all --shard=${{ matrix.shard }}/$((${{ strategy.job-total }} - 1))

- name: Persist test results
if: always() && matrix.shard != 0
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nodejs 20.19.4
nodejs 22.21.1
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
import { CustomerLogos } from '@components/customer-logos/CustomerLogos';
import { Quotes } from '@components/quotes/Quotes';
import { quotesData } from '@components/quotes/quotesData';
import React from 'react';
import React, { type FunctionComponent } from 'react';

import styles from './Customers.module.scss';

const Customers: React.FC = () => {
interface Props {
displayLogos: boolean;
}

const Customers: FunctionComponent<Props> = ({ displayLogos = true }) => {
return (
<div className={styles.container}>
<div className={styles.quotesContainer}>
<Quotes data={quotesData} />
</div>

<CustomerLogos />
{displayLogos && <CustomerLogos />}
</div>
);
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function CodeOptionSelector({
value={internalFramework}
onChange={(event) => {
onChange(event);
tracking && tracking(event.target.value);
tracking?.(event.target.value);
}}
onBlur={onChange}
>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading