Skip to content

Commit 62d7d3f

Browse files
authored
Merge pull request #2501 from visualize-admin/chore/handover
chore: Handover cleanup
2 parents bc6da9b + 45a19fe commit 62d7d3f

33 files changed

+137
-1081
lines changed

.dockerignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.git
22
.next
33
*Dockerfile*
4-
# Ignore node_modules to prevent issues with wrong binaries (e.g. sentry cli)
4+
# Ignore node_modules to prevent issues with wrong binaries
55
node_modules
66
.DS_Store
77
*.log

.env.example

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# Translations
2-
ACCENT_API_KEY=123
3-
41
# Auth configuration
52
ADFS_ISSUER=123
63
ADFS_ID=123

.github/workflows/chromatic.yml

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

.github/workflows/e2e.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ jobs:
3030
yarn e2e -- --grep-invert @noci --shard=${{ matrix.shardIndex }}/${{
3131
matrix.shardTotal }}
3232
env:
33-
ARGOS_BRANCH:
34-
${{ github.event.deployment_status.environment == 'Production' &&
35-
'main' || '' }}
3633
E2E_BASE_URL: ${{ github.event.deployment_status.target_url }}
3734
E2E_HAR: ${{ secrets.E2E_HAR }}
3835
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/manual-load-test.yml

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@ on:
1717
required: true
1818
default: true
1919
type: boolean
20-
cloud:
21-
description: "Enable K6 Cloud"
22-
required: true
23-
default: false
24-
type: boolean
2520

2621
env:
2722
ENV: ${{ inputs.environment }}
@@ -39,24 +34,24 @@ jobs:
3934
uses: grafana/[email protected]
4035
with:
4136
filename: k6/load-tests/graphql/components.js
42-
cloud: ${{ inputs.cloud }}
43-
token: ${{ secrets.K6_CLOUD_API_TOKEN }}
44-
flags: --env ENV=${{ env.ENV }} --env ENABLE_GQL_SERVER_SIDE_CACHE=${{ env.ENABLE_GQL_SERVER_SIDE_CACHE }}
37+
flags:
38+
--env ENV=${{ env.ENV }} --env ENABLE_GQL_SERVER_SIDE_CACHE=${{
39+
env.ENABLE_GQL_SERVER_SIDE_CACHE }}
4540

4641
- name: Testing GraphQL - Observations
4742
if: always()
4843
uses: grafana/[email protected]
4944
with:
5045
filename: k6/load-tests/graphql/observations.js
51-
cloud: ${{ inputs.cloud }}
52-
token: ${{ secrets.K6_CLOUD_API_TOKEN }}
53-
flags: --env ENV=${{ env.ENV }} --env ENABLE_GQL_SERVER_SIDE_CACHE=${{ env.ENABLE_GQL_SERVER_SIDE_CACHE }}
46+
flags:
47+
--env ENV=${{ env.ENV }} --env ENABLE_GQL_SERVER_SIDE_CACHE=${{
48+
env.ENABLE_GQL_SERVER_SIDE_CACHE }}
5449

5550
- name: Testing HAR - Edition
5651
if: always()
5752
uses: grafana/[email protected]
5853
with:
5954
filename: k6/load-tests/har/${{ env.ENV }}/edition.js
60-
cloud: ${{ inputs.cloud }}
61-
token: ${{ secrets.K6_CLOUD_API_TOKEN }}
62-
flags: --env ENABLE_GQL_SERVER_SIDE_CACHE=${{ env.ENABLE_GQL_SERVER_SIDE_CACHE }}
55+
flags:
56+
--env ENABLE_GQL_SERVER_SIDE_CACHE=${{
57+
env.ENABLE_GQL_SERVER_SIDE_CACHE }}

.storybook/preview.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,6 @@ const preview: Preview = {
2020
? 0
2121
: a.id.localeCompare(b.id, undefined, { numeric: true }),
2222
},
23-
parameters: {
24-
// Disables Chromatic's snapshotting on a global level
25-
// We use Argos for snapshots, and only use Chromatic to link to Figma
26-
chromatic: { disableSnapshot: true },
27-
}
2823
};
2924

3025
export default preview;

CLAUDE.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ code in this repository.
4343
- `yarn locales:extract` - Extract translatable strings from code to generate
4444
message files
4545
- `yarn locales:compile` - Compile translation files
46-
- `yarn locales:sync` - Sync translations with Accent (translation service)
4746

4847
### GraphQL & Code Generation
4948

CODEOWNERS

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)