From 60f01c8ffd24fa531e5e73fdd3b3419e6c6bbf07 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 | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 505c85ad..565196cc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,12 +9,10 @@ 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: | - cd cli - npm run test + uses: devcontainers/ci@v0.3 + with: + runCmd: | + cd cli + npm run test