diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index ce9c55d4c..295a259ce 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -37,6 +37,23 @@ jobs: context: . cache-from: type=gha cache-to: type=gha,mode=max + test_dev: + name: Test development + runs-on: ubuntu-latest + steps: + - name: Checkout the repository + uses: actions/checkout@v4 + + - name: Set up node & dependencies + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: "npm" + + - run: npm ci + + - name: Run the TypeScript build + run: npx tsc test_docker: name: Check Docker build runs-on: ubuntu-latest