Skip to content

Commit c55cae3

Browse files
committed
fix(wpvip-integrations-base): install Playwright browsers
1 parent 16b5d17 commit c55cae3

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

images/src/wpvip-integrations-base/.devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"x-build": {
77
"name": "WPVIP Integrations",
88
"image-name": "wpvip-integrations-base",
9-
"image-version": "0.0.1"
9+
"image-version": "0.0.2"
1010
},
1111
"remoteUser": "vscode",
1212
"updateContentCommand": "/usr/local/bin/update-content.sh",

images/src/wpvip-integrations-base/update-content.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,7 @@ if [ -d node_modules ]; then
66
else
77
npm ci
88
fi
9+
10+
if npm ls playwright > /dev/null; then
11+
npx playwright install
12+
fi

0 commit comments

Comments
 (0)