diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 2fec915..0bf7e75 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -2,7 +2,11 @@ { "image": "mcr.microsoft.com/devcontainers/javascript-node:1-18-bullseye", "features": { - "ghcr.io/devcontainers/features/docker-in-docker:2": {} + "ghcr.io/devcontainers/features/docker-in-docker:2": {}, + "ghcr.io/devcontainers/features/sshd:1": { + "version": "latest" + }, + "ghcr.io/devcontainers/features/github-cli": {} }, "customizations": { "vscode": { diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c3d7991 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +.PHONY: clean build test + +template ?= color + +STAGE = build test + +default: clean build + + +$(STAGE): + ./.github/actions/smoke-test/$@.sh $(template) + +clean: + rm -rf /tmp/$(template)