From 6589368924b55542cf210cfaf42b17883a5749ba Mon Sep 17 00:00:00 2001 From: Felipe Santos Date: Sat, 19 Nov 2022 16:27:50 -0300 Subject: [PATCH] Test devcontainer build as part of CI --- .github/workflows/pull_request.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index e14681a14..eeb270af1 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -19,6 +19,10 @@ jobs: - name: Lint run: npm run lint working-directory: ./web + - name: Install devcontainer cli + run: npm install --global @devcontainer/cli + - name: Ensure devcontainer builds + run: devcontainer build --workspace-folder . web_test: name: Web - Test