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