From 113c093f649bfa28fb08415e7167b2985227961f Mon Sep 17 00:00:00 2001 From: Tony Brix Date: Thu, 3 Aug 2023 01:07:18 -0600 Subject: [PATCH] fix github actions --- .github/workflows/tests.yml | 4 ++++ package.json | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d9a62f094d..c32d972ee5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -29,6 +29,10 @@ jobs: run: npm run test:unit - name: Run Spec Tests 👩🏽‍💻 run: npm run test:specs + - name: Run UMD Tests 👩🏽‍💻 + run: npm run test:umd + - name: Run Types Tests 👩🏽‍💻 + run: npm run test:types Lint: runs-on: ubuntu-latest diff --git a/package.json b/package.json index 64cb6ad9e6..d69f47e652 100644 --- a/package.json +++ b/package.json @@ -77,8 +77,8 @@ "uglify-js": "^3.17.4" }, "scripts": { - "test": "cross-env NODE_OPTIONS=--loader=ts-node/esm jasmine --config=jasmine.json && npm run test:umd && npm run test:types", - "test:all": "npm test && npm run test:lint", + "test": "cross-env NODE_OPTIONS=--loader=ts-node/esm jasmine --config=jasmine.json", + "test:all": "npm test && npm run test:umd && npm run test:types && npm run test:lint", "test:unit": "npm test -- test/unit/**/*-spec.js", "test:specs": "npm test -- test/specs/**/*-spec.js", "test:lint": "eslint .",