diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d9a62f094d0..c32d972ee55 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 08407ed6c6e..c1dcef6422c 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 .",