From c3966b5b16ec54f2d60dda9030f8b6431a41b0fb Mon Sep 17 00:00:00 2001 From: Gareth Jones Date: Sat, 22 Jan 2022 08:52:20 +1100 Subject: [PATCH] Add step to run typescript tests This adds the `typings` step to the build, so that we will know if a typescript change breaks things. --- .github/workflows/node.js.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 33e45839..a6d1f24c 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -30,3 +30,5 @@ jobs: - run: npm ci - run: npm run build --if-present - run: npm test + - run: npm run typings +