diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-15 09:48:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-15 14:48:53 +0000 |
commit | 730b34c0bbe394fd62afb20b32152139a65b0b60 (patch) | |
tree | f926633356b527ccddf0ae603bf25dade3ff4d51 /.github | |
parent | 1ae752b9fefb3e64114ebb4cd28f1fa0db9137c6 (diff) |
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
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 11 |
1 files changed, 8 insertions, 3 deletions
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: |