From 1d8d89dcfa3c877cfc6c2273e7d1feeb2719ecca Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Mon, 14 Sep 2020 16:52:44 +0200 Subject: [PATCH] chore: add devcontainer for GitHub Codespaces (#3862) --- .devcontainer/devcontainer.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000000000..c6122ec55b6d5 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,8 @@ +{ + "name": "Playwright", + "image": "mcr.microsoft.com/playwright:next", + "postCreateCommand": "npm install && npm run build", + "settings": { + "terminal.integrated.shell.linux": "/bin/bash" + } +} \ No newline at end of file