From 730b34c0bbe394fd62afb20b32152139a65b0b60 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Fri, 15 Dec 2023 09:48:53 -0500 Subject: Add typescript checks to CI (#350) * Add typescript checks to CI * Actually save the CI file * Run build-libs before test-ts * Move build libs CI --- .github/workflows/ci.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to '.github/workflows/ci.yml') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 65d5efb0..14e909f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,11 +25,19 @@ jobs: - name: Install dependencies run: npm ci + - name: Build Libs + run: npm run build-libs + - name: Lint JS run: npm run test-lint-js env: CI: true + - name: Validate JS Types + run: npm run test-ts + env: + CI: true + - name: Lint CSS run: npm run test-lint-css env: @@ -40,9 +48,6 @@ jobs: env: CI: true - - name: Build Libs - run: npm run build-libs - - name: Tests run: npm run test-code env: -- cgit v1.2.3