From 90c122c9e801a97e5b8e37b11fc6f297db912ea0 Mon Sep 17 00:00:00 2001 From: alexeykagansky Date: Mon, 5 Jul 2021 14:32:47 +0300 Subject: [PATCH 01/37] feat: add publish-package script --- .github/workflows/publish-package.yml | 44 +++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/publish-package.yml diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml new file mode 100644 index 000000000..9a99028eb --- /dev/null +++ b/.github/workflows/publish-package.yml @@ -0,0 +1,44 @@ +name: ci-pr-merge + +# Controls when the action will run. +on: + # Triggers the workflow on push or pull request events but only for the master branch + push: + branches: [ master ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + master_tests: + name: Run e2e tests + # This workflow contains a single job called "build" + # The type of runner that the job will run on + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Use Node.js v12.x + uses: actions/setup-node@v1 + with: + node-version: 12 + + - name: Install packages + run: yarn install + + - name: Run server + run: yarn start:sampleApp & + + - name: Run tests + run: yarn test + + creating_package: + needs: master_tests + + name: Creating latest package + runs-on: ubuntu-latest + + steps: + - name: Release new package + run: standard-version --dry-run From 3fcd6249ceac72faaa2eb7782b49fd3f546ed49f Mon Sep 17 00:00:00 2001 From: alexeykagansky Date: Mon, 5 Jul 2021 14:48:02 +0300 Subject: [PATCH 02/37] feat: add publish-package script --- .github/workflows/publish-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 9a99028eb..b8db411b5 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -1,4 +1,4 @@ -name: ci-pr-merge +name: publish-package # Controls when the action will run. on: From f1e9d065cc65927d99f8779d2e47124b7b49c662 Mon Sep 17 00:00:00 2001 From: alexeykagansky Date: Mon, 5 Jul 2021 15:36:24 +0300 Subject: [PATCH 03/37] feat: add publish-package script --- .github/workflows/publish-package.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index b8db411b5..3513f6eb7 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -33,10 +33,10 @@ jobs: - name: Run tests run: yarn test - creating_package: + publish_package: needs: master_tests - name: Creating latest package + name: Publishing package runs-on: ubuntu-latest steps: From 3317be814b44b79a0bd6e56805a85fad297a0e82 Mon Sep 17 00:00:00 2001 From: alexeykagansky Date: Mon, 5 Jul 2021 15:36:59 +0300 Subject: [PATCH 04/37] feat: add publish-package script --- .github/workflows/publish-package.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 3513f6eb7..442a0c68b 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -33,10 +33,10 @@ jobs: - name: Run tests run: yarn test - publish_package: + release_package: needs: master_tests - name: Publishing package + name: Release package runs-on: ubuntu-latest steps: From 6443f3125593d497fdba3177088cc922cda019a5 Mon Sep 17 00:00:00 2001 From: alexeykagansky Date: Mon, 5 Jul 2021 18:05:43 +0300 Subject: [PATCH 05/37] feat: add publish-package script --- .github/workflows/publish-package.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 442a0c68b..80bfcda83 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -40,5 +40,10 @@ jobs: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v1 + + - name: Install packages + run: yarn install + - name: Release new package run: standard-version --dry-run From 15865da5a0ff572cb70beffc691244c192b65731 Mon Sep 17 00:00:00 2001 From: alexeykagansky Date: Tue, 6 Jul 2021 10:04:38 +0300 Subject: [PATCH 06/37] feat: add publish-package script --- .github/workflows/publish-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 80bfcda83..d5e107209 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -4,7 +4,7 @@ name: publish-package on: # Triggers the workflow on push or pull request events but only for the master branch push: - branches: [ master ] + branches: [ APPS-9798-add-publish-job ] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: From 4032922ec3e1a6f08302a2813a58947169aa2af9 Mon Sep 17 00:00:00 2001 From: alexeykagansky Date: Tue, 6 Jul 2021 10:04:54 +0300 Subject: [PATCH 07/37] feat: add publish-package script --- .github/workflows/publish-package.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index d5e107209..d580a78ed 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -30,8 +30,8 @@ jobs: - name: Run server run: yarn start:sampleApp & - - name: Run tests - run: yarn test + # - name: Run tests + # run: yarn test release_package: needs: master_tests From f9310d56d66927618c6da1f518529ce89f305863 Mon Sep 17 00:00:00 2001 From: alexeykagansky Date: Tue, 6 Jul 2021 10:12:33 +0300 Subject: [PATCH 08/37] feat: add publish-package script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 89b56bdc1..9758edbc6 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "spec": "DEFAULT_TIME_OUT=3000 wdio src/test/wdio.conf.js --spec", "pretest": "yarn lint", "start:sampleApp": "ws --spa src/test/sampleApp/index.html", - "release": "standard-version" + "release": "standard-version --dry-run" }, "dependencies": { "@applitools/eyes-sdk-core": "11.0.2", From 21285b338c408b5b5fe805360f26de6efff608da Mon Sep 17 00:00:00 2001 From: AlexeyKa Date: Tue, 6 Jul 2021 10:24:24 +0300 Subject: [PATCH 09/37] Update publish-package.yml --- .github/workflows/publish-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index d580a78ed..06f152c02 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -46,4 +46,4 @@ jobs: run: yarn install - name: Release new package - run: standard-version --dry-run + run: yarn release From 825b478bddfc70fcb948386d7bfe5dd86dddddde Mon Sep 17 00:00:00 2001 From: alexeykagansky Date: Wed, 7 Jul 2021 08:53:41 +0300 Subject: [PATCH 10/37] feat: add publish-package script --- .github/workflows/publish-package.yml | 15 ++++++++++++++- package.json | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index d580a78ed..d93b57d1d 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -40,10 +40,23 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 + with: + token: ${{ secrets.WDIO_TOKEN }} - name: Install packages run: yarn install - name: Release new package run: standard-version --dry-run + + - name: push changes + run: git push --follow-tags origin HEAD + + - uses: JS-DevTools/npm-publish@v1 + with: + token: ${{ secrets.NPM_TOKEN }} + + - if: steps.publish.outputs.type != 'none' + run: | + echo "Version changed: ${{ steps.publish.outputs.old-version }} => ${{ steps.publish.outputs.version }}" diff --git a/package.json b/package.json index 9758edbc6..f84423418 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "spec": "DEFAULT_TIME_OUT=3000 wdio src/test/wdio.conf.js --spec", "pretest": "yarn lint", "start:sampleApp": "ws --spa src/test/sampleApp/index.html", - "release": "standard-version --dry-run" + "release": "standard-version release -- --prerelease alpha" }, "dependencies": { "@applitools/eyes-sdk-core": "11.0.2", From 94461e87ac20ef07ea0a65fc614ee6ba09eb31c1 Mon Sep 17 00:00:00 2001 From: alexeykagansky Date: Wed, 7 Jul 2021 08:58:28 +0300 Subject: [PATCH 11/37] feat: add publish-package script --- .github/workflows/publish-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 3400e75c0..1e84009f6 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -48,7 +48,7 @@ jobs: run: yarn install - name: Release new package - run: standard-version + run: yarn release - name: push changes run: git push --follow-tags origin APPS-9798-add-publish-job From 268b54f835a520da75a0d1a061b61df62f78ccb9 Mon Sep 17 00:00:00 2001 From: alexeykagansky Date: Wed, 7 Jul 2021 09:01:39 +0300 Subject: [PATCH 12/37] feat: add publish-package script --- .github/workflows/publish-package.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 1e84009f6..a876eb92e 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -49,6 +49,8 @@ jobs: - name: Release new package run: yarn release + with: + token: ${{ secrets.WDIO_TOKEN }} - name: push changes run: git push --follow-tags origin APPS-9798-add-publish-job From f1731f8e6b2e4c464b2811d69ab62ffddf891ab9 Mon Sep 17 00:00:00 2001 From: alexeykagansky Date: Wed, 7 Jul 2021 09:32:55 +0300 Subject: [PATCH 13/37] feat: add publish-package script --- .github/workflows/publish-package.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index a876eb92e..d87f92765 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -49,8 +49,7 @@ jobs: - name: Release new package run: yarn release - with: - token: ${{ secrets.WDIO_TOKEN }} + - name: push changes run: git push --follow-tags origin APPS-9798-add-publish-job From b970aa45da8d4267786e8e8f8f4fa0de03d94fb3 Mon Sep 17 00:00:00 2001 From: AlexeyKa Date: Wed, 7 Jul 2021 09:41:56 +0300 Subject: [PATCH 14/37] Create publish-package.yml --- .github/workflows/publish-package.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index d87f92765..60ea3449c 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -48,8 +48,10 @@ jobs: run: yarn install - name: Release new package - run: yarn release - + run: | + git config user.name ${{ secrets.USERNAME }} + git config user.email "${{ secrets.MAIL }}" + yarn release - name: push changes run: git push --follow-tags origin APPS-9798-add-publish-job From f2efb4aab9bec8953a1a67267c58cfbf649e75e2 Mon Sep 17 00:00:00 2001 From: alexeykagansky <> Date: Wed, 7 Jul 2021 06:43:40 +0000 Subject: [PATCH 15/37] chore(release): 3.0.2 --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0597f87db..b0000095e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### 3.0.2 (2021-07-07) + ### [3.0.1](https://github.com/cloudinary/wdio-allure-ts/compare/v3.0.0...v3.0.1) (2021-07-01) diff --git a/package.json b/package.json index f84423418..4583ad04d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wdio-allure-ts", - "version": "3.0.1", + "version": "3.0.2", "description": "UI E2E testing util", "license": "MIT", "author": "Cloudinary ", From a6de87a9ea5fe0dd862a69d7225634ed1a10fad2 Mon Sep 17 00:00:00 2001 From: alexeykagansky <> Date: Wed, 7 Jul 2021 06:45:16 +0000 Subject: [PATCH 16/37] chore(release): 3.0.3 --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0000095e..9cfc2483b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### 3.0.3 (2021-07-07) + ### 3.0.2 (2021-07-07) ### [3.0.1](https://github.com/cloudinary/wdio-allure-ts/compare/v3.0.0...v3.0.1) (2021-07-01) diff --git a/package.json b/package.json index 4583ad04d..811bcab36 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wdio-allure-ts", - "version": "3.0.2", + "version": "3.0.3", "description": "UI E2E testing util", "license": "MIT", "author": "Cloudinary ", From d97a99356810d1e0f78149dee9ef6d49a4e90a64 Mon Sep 17 00:00:00 2001 From: alexeykagansky <> Date: Wed, 7 Jul 2021 06:46:55 +0000 Subject: [PATCH 17/37] chore(release): 3.0.4 --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cfc2483b..13d746f99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### 3.0.4 (2021-07-07) + ### 3.0.3 (2021-07-07) ### 3.0.2 (2021-07-07) diff --git a/package.json b/package.json index 811bcab36..4d266a914 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wdio-allure-ts", - "version": "3.0.3", + "version": "3.0.4", "description": "UI E2E testing util", "license": "MIT", "author": "Cloudinary ", From 86814a8113916424ac8164442b4a9e382e10a7d8 Mon Sep 17 00:00:00 2001 From: alexeykagansky <> Date: Wed, 7 Jul 2021 06:48:52 +0000 Subject: [PATCH 18/37] chore(release): 3.0.5 --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 13d746f99..784a3d6c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### 3.0.5 (2021-07-07) + ### 3.0.4 (2021-07-07) ### 3.0.3 (2021-07-07) diff --git a/package.json b/package.json index 4d266a914..42dc30da6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wdio-allure-ts", - "version": "3.0.4", + "version": "3.0.5", "description": "UI E2E testing util", "license": "MIT", "author": "Cloudinary ", From 7d93dafe7e32189de4b07b45d7a5bc30b1aacacb Mon Sep 17 00:00:00 2001 From: alexeykagansky <> Date: Wed, 7 Jul 2021 06:50:17 +0000 Subject: [PATCH 19/37] chore(release): 3.0.6 --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 784a3d6c9..45d63f7ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### 3.0.6 (2021-07-07) + ### 3.0.5 (2021-07-07) ### 3.0.4 (2021-07-07) diff --git a/package.json b/package.json index 42dc30da6..0f45858d4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wdio-allure-ts", - "version": "3.0.5", + "version": "3.0.6", "description": "UI E2E testing util", "license": "MIT", "author": "Cloudinary ", From 10d0b9fbc870b73a88da9cff2a4efd96dbb4c6b1 Mon Sep 17 00:00:00 2001 From: alexeykagansky <> Date: Wed, 7 Jul 2021 06:51:55 +0000 Subject: [PATCH 20/37] chore(release): 3.0.7 --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 45d63f7ee..d172e198b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### 3.0.7 (2021-07-07) + ### 3.0.6 (2021-07-07) ### 3.0.5 (2021-07-07) diff --git a/package.json b/package.json index 0f45858d4..5b0ca0ca9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wdio-allure-ts", - "version": "3.0.6", + "version": "3.0.7", "description": "UI E2E testing util", "license": "MIT", "author": "Cloudinary ", From 53305c92134b4da2be70e767e344061e47be4f59 Mon Sep 17 00:00:00 2001 From: alexeykagansky <> Date: Wed, 7 Jul 2021 06:53:45 +0000 Subject: [PATCH 21/37] chore(release): 3.0.8 --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d172e198b..8592da7cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### 3.0.8 (2021-07-07) + ### 3.0.7 (2021-07-07) ### 3.0.6 (2021-07-07) diff --git a/package.json b/package.json index 5b0ca0ca9..e592dd4cd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wdio-allure-ts", - "version": "3.0.7", + "version": "3.0.8", "description": "UI E2E testing util", "license": "MIT", "author": "Cloudinary ", From 8f826f4bd83488270333c23cf62d6e5d9757fd94 Mon Sep 17 00:00:00 2001 From: alexeykagansky <> Date: Wed, 7 Jul 2021 06:55:39 +0000 Subject: [PATCH 22/37] chore(release): 3.0.9 --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8592da7cd..010895cb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### 3.0.9 (2021-07-07) + ### 3.0.8 (2021-07-07) ### 3.0.7 (2021-07-07) diff --git a/package.json b/package.json index e592dd4cd..2b8bd4c1b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wdio-allure-ts", - "version": "3.0.8", + "version": "3.0.9", "description": "UI E2E testing util", "license": "MIT", "author": "Cloudinary ", From 7535c318420bc58f3b800d96e503f0aeddd8d3d8 Mon Sep 17 00:00:00 2001 From: alexeykagansky <> Date: Wed, 7 Jul 2021 06:57:18 +0000 Subject: [PATCH 23/37] chore(release): 3.0.10 --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 010895cb5..26977d8bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### 3.0.10 (2021-07-07) + ### 3.0.9 (2021-07-07) ### 3.0.8 (2021-07-07) diff --git a/package.json b/package.json index 2b8bd4c1b..e38ca7c19 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wdio-allure-ts", - "version": "3.0.9", + "version": "3.0.10", "description": "UI E2E testing util", "license": "MIT", "author": "Cloudinary ", From 968641cc17daa8817efba4296c9fa1b93076bb5a Mon Sep 17 00:00:00 2001 From: alexeykagansky <> Date: Wed, 7 Jul 2021 06:58:57 +0000 Subject: [PATCH 24/37] chore(release): 3.0.11 --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26977d8bb..b44deb9f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### 3.0.11 (2021-07-07) + ### 3.0.10 (2021-07-07) ### 3.0.9 (2021-07-07) diff --git a/package.json b/package.json index e38ca7c19..750d34125 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wdio-allure-ts", - "version": "3.0.10", + "version": "3.0.11", "description": "UI E2E testing util", "license": "MIT", "author": "Cloudinary ", From 08f5ea6d97e31aa2b8dbb1dc52c3af2522dfcb91 Mon Sep 17 00:00:00 2001 From: alexeykagansky <> Date: Wed, 7 Jul 2021 07:00:52 +0000 Subject: [PATCH 25/37] chore(release): 3.0.12 --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b44deb9f5..f79d9276f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### 3.0.12 (2021-07-07) + ### 3.0.11 (2021-07-07) ### 3.0.10 (2021-07-07) diff --git a/package.json b/package.json index 750d34125..2dee9379e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wdio-allure-ts", - "version": "3.0.11", + "version": "3.0.12", "description": "UI E2E testing util", "license": "MIT", "author": "Cloudinary ", From 6fe9873acc8e76feb346db12d70d04d55684c56d Mon Sep 17 00:00:00 2001 From: alexeykagansky <> Date: Wed, 7 Jul 2021 07:02:29 +0000 Subject: [PATCH 26/37] chore(release): 3.0.13 --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f79d9276f..81633797e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### 3.0.13 (2021-07-07) + ### 3.0.12 (2021-07-07) ### 3.0.11 (2021-07-07) diff --git a/package.json b/package.json index 2dee9379e..dd284b672 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wdio-allure-ts", - "version": "3.0.12", + "version": "3.0.13", "description": "UI E2E testing util", "license": "MIT", "author": "Cloudinary ", From fa7efe89133cb22a3021ab57ec84e43447188f5d Mon Sep 17 00:00:00 2001 From: alexeykagansky <> Date: Wed, 7 Jul 2021 07:04:19 +0000 Subject: [PATCH 27/37] chore(release): 3.0.14 --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 81633797e..d7540dadd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### 3.0.14 (2021-07-07) + ### 3.0.13 (2021-07-07) ### 3.0.12 (2021-07-07) diff --git a/package.json b/package.json index dd284b672..c7bf0938c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wdio-allure-ts", - "version": "3.0.13", + "version": "3.0.14", "description": "UI E2E testing util", "license": "MIT", "author": "Cloudinary ", From a93ca8a49fa06db11b98907989a9d1ea9b50290d Mon Sep 17 00:00:00 2001 From: alexeykagansky <> Date: Wed, 7 Jul 2021 07:06:03 +0000 Subject: [PATCH 28/37] chore(release): 3.0.15 --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d7540dadd..b5fc6904a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### 3.0.15 (2021-07-07) + ### 3.0.14 (2021-07-07) ### 3.0.13 (2021-07-07) diff --git a/package.json b/package.json index c7bf0938c..2123cf3bc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wdio-allure-ts", - "version": "3.0.14", + "version": "3.0.15", "description": "UI E2E testing util", "license": "MIT", "author": "Cloudinary ", From 4942262975758364a9c60ac6bd00648d8abc6f62 Mon Sep 17 00:00:00 2001 From: alexeykagansky <> Date: Wed, 7 Jul 2021 07:07:51 +0000 Subject: [PATCH 29/37] chore(release): 3.0.16 --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5fc6904a..fc6894e73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### 3.0.16 (2021-07-07) + ### 3.0.15 (2021-07-07) ### 3.0.14 (2021-07-07) diff --git a/package.json b/package.json index 2123cf3bc..77b923370 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wdio-allure-ts", - "version": "3.0.15", + "version": "3.0.16", "description": "UI E2E testing util", "license": "MIT", "author": "Cloudinary ", From 14ba5e30eddf833c46b6f62a681456ec8c6c13d5 Mon Sep 17 00:00:00 2001 From: alexeykagansky <> Date: Wed, 7 Jul 2021 07:09:40 +0000 Subject: [PATCH 30/37] chore(release): 3.0.17 --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc6894e73..844a2f945 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### 3.0.17 (2021-07-07) + ### 3.0.16 (2021-07-07) ### 3.0.15 (2021-07-07) diff --git a/package.json b/package.json index 77b923370..3b16669a3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wdio-allure-ts", - "version": "3.0.16", + "version": "3.0.17", "description": "UI E2E testing util", "license": "MIT", "author": "Cloudinary ", From 02b55c321f2029d0a583613923d5bbb7f65b514c Mon Sep 17 00:00:00 2001 From: alexeykagansky <> Date: Wed, 7 Jul 2021 07:11:22 +0000 Subject: [PATCH 31/37] chore(release): 3.0.18 --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 844a2f945..ab01d2865 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### 3.0.18 (2021-07-07) + ### 3.0.17 (2021-07-07) ### 3.0.16 (2021-07-07) diff --git a/package.json b/package.json index 3b16669a3..90e42106d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wdio-allure-ts", - "version": "3.0.17", + "version": "3.0.18", "description": "UI E2E testing util", "license": "MIT", "author": "Cloudinary ", From ccc4fea977e39c3feea93b97f617124993984579 Mon Sep 17 00:00:00 2001 From: alexeykagansky Date: Wed, 7 Jul 2021 10:12:28 +0300 Subject: [PATCH 32/37] feat: add publish-package script --- .github/workflows/ci-pr-merge.yml | 2 -- .github/workflows/publish-package.yml | 30 +++++++++++++++------------ CHANGELOG.md | 19 ----------------- 3 files changed, 17 insertions(+), 34 deletions(-) diff --git a/.github/workflows/ci-pr-merge.yml b/.github/workflows/ci-pr-merge.yml index 8ceaa769e..39509bf20 100644 --- a/.github/workflows/ci-pr-merge.yml +++ b/.github/workflows/ci-pr-merge.yml @@ -3,8 +3,6 @@ name: ci-pr-merge # Controls when the action will run. on: # Triggers the workflow on push or pull request events but only for the master branch - push: - branches: [master] pull_request: branches: [master] diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 60ea3449c..0be91b50a 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -1,20 +1,14 @@ name: publish-package - -# Controls when the action will run. on: - # Triggers the workflow on push or pull request events but only for the master branch push: - branches: [ APPS-9798-add-publish-job ] + branches: [ master ] - # Allows you to run this workflow manually from the Actions tab workflow_dispatch: -# A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: master_tests: name: Run e2e tests - # This workflow contains a single job called "build" - # The type of runner that the job will run on + runs-on: ubuntu-latest steps: @@ -30,8 +24,8 @@ jobs: - name: Run server run: yarn start:sampleApp & - # - name: Run tests - # run: yarn test + - name: Run tests + run: yarn test release_package: needs: master_tests @@ -60,6 +54,16 @@ jobs: with: token: ${{ secrets.NPM_TOKEN }} - - if: steps.publish.outputs.type != 'none' - run: | - echo "Version changed: ${{ steps.publish.outputs.old-version }} => ${{ steps.publish.outputs.version }}" + slack_notification: + needs: [ release_package ] + name: Slack notification + runs-on: ubuntu-latest + steps: + - uses: sonots/slack-notice-action@v3 + with: + text: 'New release was published' + icon_emoji: ':rocket:' + env: + GITHUB_TOKEN: ${{ secrets.WDIO_TOKEN }} + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_BOT_NOTIFICATION }} + if: always() diff --git a/CHANGELOG.md b/CHANGELOG.md index b44deb9f5..5d3e4fa13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,25 +2,6 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. -### 3.0.11 (2021-07-07) - -### 3.0.10 (2021-07-07) - -### 3.0.9 (2021-07-07) - -### 3.0.8 (2021-07-07) - -### 3.0.7 (2021-07-07) - -### 3.0.6 (2021-07-07) - -### 3.0.5 (2021-07-07) - -### 3.0.4 (2021-07-07) - -### 3.0.3 (2021-07-07) - -### 3.0.2 (2021-07-07) ### [3.0.1](https://github.com/cloudinary/wdio-allure-ts/compare/v3.0.0...v3.0.1) (2021-07-01) From e9f82dadcab44da62c0eb02e430b3389d5710de7 Mon Sep 17 00:00:00 2001 From: alexeykagansky Date: Wed, 7 Jul 2021 10:20:17 +0300 Subject: [PATCH 33/37] feat: add publish-package script --- .github/workflows/publish-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 0be91b50a..064f3f83f 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -48,7 +48,7 @@ jobs: yarn release - name: push changes - run: git push --follow-tags origin APPS-9798-add-publish-job + run: git push --follow-tags origin HEAD - uses: JS-DevTools/npm-publish@v1 with: From eac2f6a7338b5138c0ee220e3de9361a076a4ad4 Mon Sep 17 00:00:00 2001 From: alexeykagansky Date: Wed, 7 Jul 2021 10:28:13 +0300 Subject: [PATCH 34/37] feat: add publish-package script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 90e42106d..14ff0d60c 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "spec": "DEFAULT_TIME_OUT=3000 wdio src/test/wdio.conf.js --spec", "pretest": "yarn lint", "start:sampleApp": "ws --spa src/test/sampleApp/index.html", - "release": "standard-version release -- --prerelease alpha" + "release": "standard-version" }, "dependencies": { "@applitools/eyes-sdk-core": "11.0.2", From c35b3165c228997ec9a547c3815a83a4274f8fa1 Mon Sep 17 00:00:00 2001 From: alexeykagansky Date: Wed, 7 Jul 2021 15:38:36 +0300 Subject: [PATCH 35/37] feat: add publish-package script --- .github/workflows/publish-package.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 064f3f83f..55a0fc06e 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -12,7 +12,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 + with: + token: ${{ secrets.WDIO_TOKEN }} - name: Use Node.js v12.x uses: actions/setup-node@v1 with: @@ -41,28 +43,22 @@ jobs: - name: Install packages run: yarn install - - name: Release new package + - name: run standart version run: | git config user.name ${{ secrets.USERNAME }} git config user.email "${{ secrets.MAIL }}" yarn release - name: push changes - run: git push --follow-tags origin HEAD + run: git push --follow-tags origin master - uses: JS-DevTools/npm-publish@v1 with: token: ${{ secrets.NPM_TOKEN }} - slack_notification: - needs: [ release_package ] - name: Slack notification - runs-on: ubuntu-latest - steps: - uses: sonots/slack-notice-action@v3 with: - text: 'New release was published' - icon_emoji: ':rocket:' + status: ${{ job.status }} env: GITHUB_TOKEN: ${{ secrets.WDIO_TOKEN }} SLACK_WEBHOOK_URL: ${{ secrets.SLACK_BOT_NOTIFICATION }} From c46c924b714dff2ca69964111d2b4137be8932a8 Mon Sep 17 00:00:00 2001 From: alexeykagansky Date: Sun, 18 Jul 2021 14:09:59 +0300 Subject: [PATCH 36/37] feat: add publish-package script --- .github/workflows/publish-package.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 55a0fc06e..9cdb1c4cb 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -59,6 +59,8 @@ jobs: - uses: sonots/slack-notice-action@v3 with: status: ${{ job.status }} + text_on_success: "New version wdio-allure-ts published successfully" + text_on_fail: "Publish failed, please check" env: GITHUB_TOKEN: ${{ secrets.WDIO_TOKEN }} SLACK_WEBHOOK_URL: ${{ secrets.SLACK_BOT_NOTIFICATION }} From 3cc816ac7f123343942fcf80cdf10d7ae1d10c31 Mon Sep 17 00:00:00 2001 From: alexeykagansky Date: Tue, 20 Jul 2021 11:39:47 +0300 Subject: [PATCH 37/37] feat: add publish-package script --- .github/workflows/publish-package.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index 9cdb1c4cb..cc2acebf4 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -29,6 +29,14 @@ jobs: - name: Run tests run: yarn test + - uses: sonots/slack-notice-action@v3 + with: + status: ${{ job.status }} + env: + GITHUB_TOKEN: ${{ secrets.WDIO_TOKEN }} + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_BOT_NOTIFICATION }} + if: failure() + release_package: needs: master_tests @@ -59,8 +67,8 @@ jobs: - uses: sonots/slack-notice-action@v3 with: status: ${{ job.status }} - text_on_success: "New version wdio-allure-ts published successfully" - text_on_fail: "Publish failed, please check" + text_on_success: 'New version wdio-allure-ts published successfully' + text_on_fail: 'Publish failed, please check' env: GITHUB_TOKEN: ${{ secrets.WDIO_TOKEN }} SLACK_WEBHOOK_URL: ${{ secrets.SLACK_BOT_NOTIFICATION }}