mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-01-05 13:34:08 +00:00
Stop testing dependency deduplication on the custom test runners
That's since we already run that test as part of flowzone's default "Test npm (18.x)", and the custom tests are using the latest node & npm version of the selected major. Change-type: patch
This commit is contained in:
parent
f5ffa7d84f
commit
65ba63d1a8
2
.github/actions/test/action.yml
vendored
2
.github/actions/test/action.yml
vendored
@ -51,7 +51,7 @@ runs:
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
npm run build
|
npm run build
|
||||||
npm run test
|
npm run test:core
|
||||||
|
|
||||||
- name: Compress custom source
|
- name: Compress custom source
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
|
@ -59,7 +59,8 @@
|
|||||||
"package": "npm run build:fast && npm run build:standalone && npm run build:installer",
|
"package": "npm run build:fast && npm run build:standalone && npm run build:installer",
|
||||||
"release": "ts-node --transpile-only automation/run.ts release",
|
"release": "ts-node --transpile-only automation/run.ts release",
|
||||||
"pretest": "npm run build",
|
"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:shrinkwrap": "ts-node --transpile-only automation/run.ts test-shrinkwrap",
|
||||||
"test:source": "cross-env BALENA_CLI_TEST_TYPE=source mocha",
|
"test:source": "cross-env BALENA_CLI_TEST_TYPE=source mocha",
|
||||||
"test:standalone": "npm run build:standalone && npm run test:standalone:fast",
|
"test:standalone": "npm run build:standalone && npm run test:standalone:fast",
|
||||||
|
Loading…
Reference in New Issue
Block a user