mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-22 10:46:11 +00:00
Added Linux containers for supported platforms. Updated tests to run and pass on all targets.
10 lines
213 B
Bash
Executable File
10 lines
213 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
echo "Installing Playwright WebKit browser"
|
|
npx playwright install --with-deps webkit
|
|
|
|
echo "Running sanity tests"
|
|
SCRIPT_DIR=$(cd "$(dirname "$0")" && pwd)
|
|
node "$SCRIPT_DIR/../out/index.js" $@
|