From 44649f20086a33333ba342930104bb734857cbe4 Mon Sep 17 00:00:00 2001 From: Champari Oltion <51322092+oltionchampari@users.noreply.github.com> Date: Fri, 8 Nov 2024 09:50:47 +0100 Subject: [PATCH 1/2] feat: add ESLint playwright plugin (#106) * test: add eslint playwright plugin * fix: add dependency to dependencies instead --- config/eslintrc.template.js | 4 ++++ package.json | 1 + 2 files changed, 5 insertions(+) diff --git a/config/eslintrc.template.js b/config/eslintrc.template.js index 23cc343..0893e54 100755 --- a/config/eslintrc.template.js +++ b/config/eslintrc.template.js @@ -145,5 +145,9 @@ module.exports = ({ tsconfigRootDir, optimizeImports }) => ({ extends: ['plugin:jest/recommended'], plugins: ['jest'], }, + { + files: 'playwright/**/*.{test|spec}.ts', + extends: 'plugin:playwright/recommended', + }, ], }); diff --git a/package.json b/package.json index ad8aa1d..4d73c92 100644 --- a/package.json +++ b/package.json @@ -63,6 +63,7 @@ "eslint-plugin-react-compiler": "0.0.0-experimental-b8a7b48-20240830", "eslint-plugin-react-hooks": "^4.6.2", "eslint-plugin-unused-imports": "^4.1.4", + "eslint-plugin-playwright": "^2.0.1", "fork-ts-checker-webpack-plugin": "^9.0.2", "fs-extra": "^11.2.0", "glob": "^11.0.0", From 8f33e5aaf35b9e0101e48bf251834cf3c2338aae Mon Sep 17 00:00:00 2001 From: datavisyn-bot <32451285+datavisyn-bot@users.noreply.github.com> Date: Fri, 8 Nov 2024 09:51:34 +0100 Subject: [PATCH 2/2] update release.yaml for automated release workflow (#102) * Prepare changes by: update_release_yml.sh * Prepare changes by: update_release_yml.sh --------- Co-authored-by: dvviktordelev <> --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 26ec0f3..9fade96 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ on: jobs: release: - uses: datavisyn/github-workflows/.github/workflows/release-source.yml@feat-automate-releases-releasenotes - secrets: inherit + uses: datavisyn/github-workflows/.github/workflows/release-source.yml@main + secrets: inherit with: - release_version: ${{ inputs.release_version }} + release_version: ${{ inputs.release_version }} \ No newline at end of file