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
5 changes: 5 additions & 0 deletions .github/workflows/test-storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ jobs:

- name: Storybook Tests
working-directory: ./app/client/packages/storybook
env:
# The Storybook test-runner (Jest + Playwright over every story) exceeds
# Node's ~2GB default old-space heap on the runner and OOMs (exit 129).
# Raise the limit; the runner has ample RAM.
NODE_OPTIONS: --max-old-space-size=8192
run: |
yarn build-storybook
yarn test-storybook:ci
9 changes: 8 additions & 1 deletion app/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,14 @@
"fast-csv": "4.3.6",
"json-schema": "0.4.0",
"node-fetch": "2.6.7",
"minimatch": "^5.1.8",
"minimatch@^3.0.3": "^5.1.8",
"minimatch@^3.0.4": "^5.1.8",
"minimatch@^3.0.5": "^5.1.8",
"minimatch@^3.1.1": "^5.1.8",
"minimatch@^3.1.2": "^5.1.8",
"minimatch@~3.0.2": "^5.1.8",
"minimatch@~3.0.4": "^5.1.8",
"minimatch@3.0.4": "^5.1.8",
"loader-utils": "^2.0.4",
"json5": "2.2.3",
"dns-packet": "5.4.0",
Expand Down
29 changes: 28 additions & 1 deletion app/client/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -25988,7 +25988,25 @@ __metadata:
languageName: node
linkType: hard

"minimatch@npm:^5.1.8":
"minimatch@npm:^10.1.1":
version: 10.2.5
resolution: "minimatch@npm:10.2.5"
dependencies:
brace-expansion: ^5.0.5
checksum: 000423875fecbc7da1d74bf63c9081363a71291ef2588c376c45647ac004582cb5bc8cc09ef84420b26bfb490f4d0818d328e78569c6228e20d90271283f73ba
languageName: node
linkType: hard

"minimatch@npm:^3.0.2":
version: 3.1.5
resolution: "minimatch@npm:3.1.5"
dependencies:
brace-expansion: ^1.1.7
checksum: 47ef6f412c08be045a7291d11b1c40777925accf7252dc6d3caa39b1bfbb3a7ea390ba7aba464d762d783265c644143d2c8a204e6b5763145024d52ee65a1941
languageName: node
linkType: hard

"minimatch@npm:^5.0.1, minimatch@npm:^5.1.8":
version: 5.1.9
resolution: "minimatch@npm:5.1.9"
dependencies:
Expand All @@ -25997,6 +26015,15 @@ __metadata:
languageName: node
linkType: hard

"minimatch@npm:^9.0.4":
version: 9.0.9
resolution: "minimatch@npm:9.0.9"
dependencies:
brace-expansion: ^2.0.2
checksum: 5292681ba1e14544ca9214ba5e412bb346214fb783354b22752f2d1e5c176e4a2c0bfcafeb1046389b816009ab73ba5410b176ce605632e8aa695db25f87f6b9
languageName: node
linkType: hard

"minimist@npm:^1.1.0, minimist@npm:^1.1.1, minimist@npm:^1.2.0, minimist@npm:^1.2.3, minimist@npm:^1.2.5, minimist@npm:^1.2.6, minimist@npm:^1.2.8":
version: 1.2.8
resolution: "minimist@npm:1.2.8"
Expand Down
Loading