From e6ea6bda3115bb52e61e059c3ad6689a61188719 Mon Sep 17 00:00:00 2001 From: Andy Ford Date: Tue, 25 Jun 2024 11:12:32 +0100 Subject: [PATCH] build: run typescript test checks on actions --- .github/workflows/dev.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index a0e0b0f2..00e30704 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -40,6 +40,17 @@ jobs: node-version: 20 - run: npm ci - run: npm run lint + test-typescript: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + submodules: true + - uses: actions/setup-node@v1 + with: + node-version: 20 + - run: npm ci + - run: npm run test:typescript test: runs-on: ubuntu-latest steps: