diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml index 2b2a6392..7d289fd2 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -51,7 +51,7 @@ runs: fi npm run build - npm run test + npm run test:core - name: Compress custom source shell: pwsh diff --git a/package.json b/package.json index 316e67ab..989552bf 100644 --- a/package.json +++ b/package.json @@ -59,7 +59,8 @@ "package": "npm run build:fast && npm run build:standalone && npm run build:installer", "release": "ts-node --transpile-only automation/run.ts release", "pretest": "npm run build", - "test": "npm run test:shrinkwrap && npm run test:source && npm run test:standalone", + "test": "npm run test:shrinkwrap && npm run test:core", + "test:core": "npm run test:source && npm run test:standalone", "test:shrinkwrap": "ts-node --transpile-only automation/run.ts test-shrinkwrap", "test:source": "cross-env BALENA_CLI_TEST_TYPE=source mocha", "test:standalone": "npm run build:standalone && npm run test:standalone:fast",