From e15820617745530c560875368593ee6ec90ca933 Mon Sep 17 00:00:00 2001 From: Matt Swensen Date: Wed, 19 Jun 2024 19:54:18 +0000 Subject: [PATCH] Use devcontainer in CI --- .github/workflows/main.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 505c85ad..60640da7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,12 +9,9 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - name: Install dependencies - run: | - cd cli - npm install + - uses: actions/checkout@v4 - name: Run tests - run: | + uses: devcontainers/ci@v0.3 + runCmd: | cd cli npm run test