diff --git a/.harness/ci-cd.yaml b/.harness/ci-cd.yaml index d89ca3cda..e2abc6a45 100644 --- a/.harness/ci-cd.yaml +++ b/.harness/ci-cd.yaml @@ -13,7 +13,7 @@ pipeline: stages: - stage: name: Check-Test-Build-Upload - identifier: Checkout_code + identifier: Check_Test_Build_Upload description: "" type: CI spec: @@ -126,8 +126,7 @@ pipeline: identifier: upload_dev_assets_to_CDN spec: shell: Sh - command: |- - aws s3 sync ./umd s3://split-public-stage/sdk --acl public-read --follow-symlinks --cache-control max-age=31536000,public + command: aws s3 sync ./umd s3://split-public-stage/sdk --acl public-read --follow-symlinks --cache-control max-age=31536000,public connectorRef: artifacts envVariables: AWS_DEFAULT_REGION: us-east-1 @@ -140,8 +139,7 @@ pipeline: identifier: upload_prod_assets_to_CDN spec: shell: Sh - command: |- - aws s3 sync ./umd s3://split-public/sdk --acl public-read --follow-symlinks --cache-control max-age=31536000,public + command: aws s3 sync ./umd s3://split-public/sdk --acl public-read --follow-symlinks --cache-control max-age=31536000,public connectorRef: artifacts envVariables: AWS_DEFAULT_REGION: us-east-1 diff --git a/package.json b/package.json index 97b473d75..4a0f2ce18 100644 --- a/package.json +++ b/package.json @@ -99,7 +99,7 @@ "test-browser-e2e-push": "cross-env NODE_ENV=test karma start karma/e2e.push.karma.conf.js", "test-node": "npm run test-node-unit && npm run test-node-e2e", "test-node-unit": "cross-env NODE_ENV=test tape -r ./ts-node.register \"src/*/**/__tests__/**/!(browser).spec.js\" | tap-min", - "test-node-e2e": "npm run test-node-e2e-online && npm run test-node-e2e-offline && npm run test-node-e2e-destroy && npm run test-node-e2e-errorCatching && npm run test-node-e2e-push && npm run test-node-e2e-redis", + "test-node-e2e": "npm run test-node-e2e-online && npm run test-node-e2e-offline && npm run test-node-e2e-destroy && npm run test-node-e2e-errorCatching && npm run test-node-e2e-push", "test-node-e2e-online": "cross-env NODE_ENV=test tape -r ./ts-node.register src/__tests__/online/node.spec.js | tap-min", "test-node-e2e-offline": "cross-env NODE_ENV=test tape -r ./ts-node.register src/__tests__/offline/node.spec.js | tap-min", "test-node-e2e-destroy": "cross-env NODE_ENV=test tape -r ./ts-node.register src/__tests__/destroy/node.spec.js | tap-min",