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
8 changes: 6 additions & 2 deletions .github/workflows/sandbox-creating.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,13 +149,17 @@ jobs:
run: |
RESPONSE=$(curl -s -H "Authorization: Bearer $GITHUB_TOKEN" \
-H "Accept: application/vnd.github+json" \
"https://api.github.com/repos/${GITHUB_REPOSITORY}/pulls?head=${GITHUB_REPOSITORY_OWNER}:${GITHUB_REF_NAME}")
"https://api.github.com/repos/${GITHUB_REPOSITORY}/pulls?head=${GITHUB_REPOSITORY_OWNER}:${BRANCH_NAME}")

if [ $? -ne 0 ]; then
echo "::error::Failed to retrieve PR number: ${PR_NUMBER}"
exit 1
fi
PR_NUMBER=$(echo "$RESPONSE" | jq -r '.[0].number')
PR_NUMBER=$(echo "$RESPONSE" | jq -r 'if type == "array" then .[0].number // empty else empty end')
if [ -z "$PR_NUMBER" ] && [ "$GITHUB_EVENT_NAME" = "pull_request" ]; then
echo "::error::PR number extraction failed for branch ${BRANCH_NAME}"
exit 1
fi
echo "PR_NUMBER=$PR_NUMBER" >> $GITHUB_ENV

- name: Configure AWS Credentials (Sandbox Creation Trigger Role)
Expand Down
9 changes: 1 addition & 8 deletions .github/workflows/sandbox-deleting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,7 @@ jobs:
- name: Get PR Number
id: get_pr_number
run: |
RESPONSE=$(curl -s -H "Authorization: Bearer $GITHUB_TOKEN" \
-H "Accept: application/vnd.github+json" \
"https://api.github.com/repos/${GITHUB_REPOSITORY}/pulls?head=${GITHUB_REPOSITORY_OWNER}:${GITHUB_REF_NAME}")
if [ $? -ne 0 ]; then
echo "::error::Failed to retrieve PR number. Full response: $RESPONSE"
exit 1
fi
PR_NUMBER=$(echo "$RESPONSE" | jq -r '.[0].number')
PR_NUMBER="${{ github.event.pull_request.number }}"
if [ -z "$PR_NUMBER" ]; then
echo "::error::PR number extraction failed; received an empty value"
exit 1
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM public.ecr.aws/docker/library/node:23.11.1-alpine3.21 AS base

RUN apk add --no-cache \
python3=3.12.12-r0\
python3=3.12.13-r0\
make=4.4.1-r2 \
g++=14.2.0-r4 \
curl=8.14.1-r2 && \
Expand Down
2 changes: 1 addition & 1 deletion MemoryLeak.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN apk add --no-cache \
nss=3.109-r0 \
freetype=2.13.3-r0 \
harfbuzz=9.0.0-r1 \
ca-certificates=20250911-r0 \
ca-certificates=20260413-r0 \
ttf-freefont=20120503-r4 \
dbus=1.14.10-r4 \
libx11=1.8.10-r0 \
Expand Down
120 changes: 60 additions & 60 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,91 +3,91 @@
"private": true,
"packageManager": "pnpm@10.6.5",
"dependencies": {
"@apollo/client": "^4.0.11",
"@apollo/server": "^5.2.0",
"@apollo/client": "^4.2.0",
"@apollo/server": "^5.5.1",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/material": "^7.3.6",
"@mui/system": "^7.3.6",
"@sentry/node": "^10.32.1",
"@sentry/react": "^10.32.1",
"@storybook/nextjs": "^10.1.11",
"dotenv": "^17.2.3",
"dotenv-expand": "^12.0.3",
"graphql": "^16.12.0",
"i18next": "^25.7.3",
"next": "^16.1.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-hook-form": "^7.70.0",
"react-i18next": "^16.5.1",
"storybook": "^10.1.11",
"swagger-ui-react": "^5.31.0",
"swiper": "^12.0.3",
"uuid": "^13.0.0",
"@mui/material": "^9.0.1",
"@mui/system": "^9.0.1",
"@sentry/node": "^10.55.0",
"@sentry/react": "^10.55.0",
"@storybook/nextjs": "^10.4.1",
"dotenv": "^17.4.2",
"dotenv-expand": "^13.0.0",
"graphql": "^16.14.0",
"i18next": "^26.3.0",
"next": "^16.2.6",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-hook-form": "^7.76.1",
"react-i18next": "^17.0.8",
"storybook": "^10.4.1",
"swagger-ui-react": "^5.32.6",
"swiper": "^12.2.0",
"uuid": "^14.0.0",
"winston": "^3.19.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@faker-js/faker": "^10.2.0",
"@babel/core": "^7.29.7",
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@faker-js/faker": "^10.4.0",
"@lhci/cli": "^0.15.1",
"@memlab/api": "^2.0.0",
"@memlab/heap-analysis": "^2.0.0",
"@microsoft/api-extractor": "^7.55.2",
"@next/bundle-analyzer": "^16.1.1",
"@next/env": "^16.1.1",
"@next/eslint-plugin-next": "^16.1.1",
"@next/third-parties": "^16.1.1",
"@playwright/test": "^1.57.0",
"@storybook/addon-links": "^10.1.11",
"@storybook/addon-onboarding": "^10.1.11",
"@stryker-mutator/core": "^9.4.0",
"@stryker-mutator/jest-runner": "^9.4.0",
"@memlab/api": "^2.0.3",
"@memlab/heap-analysis": "^2.0.3",
"@microsoft/api-extractor": "^7.58.7",
"@next/bundle-analyzer": "^16.2.6",
"@next/env": "^16.2.6",
"@next/eslint-plugin-next": "^16.2.6",
"@next/third-parties": "^16.2.6",
"@playwright/test": "1.57.0",
"@storybook/addon-links": "^10.4.1",
"@storybook/addon-onboarding": "^10.4.1",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/jest-runner": "^9.6.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/swagger-ui-react": "^5.18.0",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"@typescript-eslint/eslint-plugin": "^8.60.0",
"@typescript-eslint/parser": "^8.60.0",
"babel-jest": "30.2.0",
"babel-preset-jest": "30.2.0",
"eslint": "^9.39.2",
"eslint": "^9.39.4",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "^16.1.1",
"eslint-config-next": "^16.2.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-storybook": "^10.1.11",
"eslint-plugin-testing-library": "^7.15.4",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-storybook": "^10.4.1",
"eslint-plugin-testing-library": "^7.16.2",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"markdownlint-cli": "^0.47.0",
"memlab": "^2.0.0",
"memlab": "^2.0.3",
"next-export-optimize-images": "^4.7.0",
"playwright": "1.57.0",
"prettier": "^3.7.4",
"sass": "^1.97.1",
"semver": "^7.7.3",
"serve": "^14.2.5",
"terser-webpack-plugin": "^5.3.16",
"ts-jest": "^29.4.6",
"prettier": "^3.8.3",
"sass": "^1.100.0",
"semver": "^7.8.1",
"serve": "^14.2.6",
"terser-webpack-plugin": "^5.6.1",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"wait-on": "^9.0.3"
"typescript": "^6.0.3",
"wait-on": "^9.0.10"
},
"pnpm": {
"overrides": {
Expand Down
2 changes: 1 addition & 1 deletion pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import 'swagger-ui-react/swagger-ui.css';

import '../styles/global.css';

import 'src/features/swagger/components/ApiDocumentation/styles.scss';
import '../src/features/swagger/components/ApiDocumentation/styles.scss';

import i18n from '../i18n';
import client from '../src/features/landing/api/graphql/apollo';
Expand Down
Loading
Loading