From 0b5bd47d6feaeb687e1a2dcec7c1731c1525850f Mon Sep 17 00:00:00 2001 From: LostButton <71197188+LostButton@users.noreply.github.com> Date: Tue, 29 Nov 2022 11:05:03 -0500 Subject: [PATCH 01/19] yarn workflow --- .github/workflow/ci.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflow/ci.yml diff --git a/.github/workflow/ci.yml b/.github/workflow/ci.yml new file mode 100644 index 0000000..e306ec6 --- /dev/null +++ b/.github/workflow/ci.yml @@ -0,0 +1,36 @@ +name: github-writer +on: [push] + +jobs: + build: + name: Test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Set Node.js 16.x + uses: actions/setup-node@v3 + with: + node-version: 16.x + + - name: Run install + uses: borales/actions-yarn@v4 + with: + cmd: install # will run `yarn install` command + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # if needed + - name: Build github-writer + uses: borales/actions-yarn@v4 + with: + cmd: build # will run `yarn build` command + - name: Testing github-writer + uses: borales/actions-yarn@v4 + with: + cmd: test # will run `yarn test` command + + - name: Run test in UNIT + uses: borales/actions-yarn@v4 + with: + cmd: test + dir: 'tests/unit' # will run `yarn test` in `tests/unit` sub folder + From 07047b751a82741264293139971b65d80bcb59b3 Mon Sep 17 00:00:00 2001 From: LostButton <71197188+LostButton@users.noreply.github.com> Date: Tue, 29 Nov 2022 12:55:10 -0500 Subject: [PATCH 02/19] fixing workflow --- .github/{workflow => workflows}/ci.yml | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) rename .github/{workflow => workflows}/ci.yml (60%) diff --git a/.github/workflow/ci.yml b/.github/workflows/ci.yml similarity index 60% rename from .github/workflow/ci.yml rename to .github/workflows/ci.yml index e306ec6..39648d7 100644 --- a/.github/workflow/ci.yml +++ b/.github/workflows/ci.yml @@ -8,10 +8,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set Node.js 16.x + - name: Set Node.js 18.x uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 18.x - name: Run install uses: borales/actions-yarn@v4 @@ -23,14 +23,25 @@ jobs: uses: borales/actions-yarn@v4 with: cmd: build # will run `yarn build` command + + - name: Build dev github-writer + uses: borales/actions-yarn@v4 + with: + cmd: build-dev # will run `yarn build-dev` command + - name: Testing github-writer uses: borales/actions-yarn@v4 with: cmd: test # will run `yarn test` command - - name: Run test in UNIT + - name: Run test in FUNCTIONAL uses: borales/actions-yarn@v4 with: - cmd: test - dir: 'tests/unit' # will run `yarn test` in `tests/unit` sub folder + cmd: test-functional # will run `yarn test-functional` command + + - name: Run test in COMPAT + uses: borales/actions-yarn@v4 + with: + cmd: test-compat # will run `yarn test-compat` command + From 659140a0c7a739f4e6e2e94e941d2f2051d04ce1 Mon Sep 17 00:00:00 2001 From: LostButton <71197188+LostButton@users.noreply.github.com> Date: Tue, 29 Nov 2022 13:01:13 -0500 Subject: [PATCH 03/19] changing node version --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39648d7..299ebaf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,10 +8,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set Node.js 18.x + - name: Set Node.js 16.x uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 16.x - name: Run install uses: borales/actions-yarn@v4 From 0cc332e5df7666c2d5d6ecad244a725cf0cb4939 Mon Sep 17 00:00:00 2001 From: LostButton <71197188+LostButton@users.noreply.github.com> Date: Tue, 29 Nov 2022 13:05:59 -0500 Subject: [PATCH 04/19] removin tests (temp) --- .github/workflows/ci.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 299ebaf..3c0f8a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,19 +29,5 @@ jobs: with: cmd: build-dev # will run `yarn build-dev` command - - name: Testing github-writer - uses: borales/actions-yarn@v4 - with: - cmd: test # will run `yarn test` command - - - name: Run test in FUNCTIONAL - uses: borales/actions-yarn@v4 - with: - cmd: test-functional # will run `yarn test-functional` command - - - name: Run test in COMPAT - uses: borales/actions-yarn@v4 - with: - cmd: test-compat # will run `yarn test-compat` command From f759bd87851a13ad0f16c3852273690f1c764eab Mon Sep 17 00:00:00 2001 From: LostButton <71197188+LostButton@users.noreply.github.com> Date: Tue, 29 Nov 2022 13:51:58 -0500 Subject: [PATCH 05/19] adding eslint --- .github/workflows/ci.yml | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c0f8a7..ddb2285 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,8 +2,28 @@ name: github-writer on: [push] jobs: + + lint: + name: ESLint + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v2 + + - name: Setup node + uses: actions/setup-node@v2 + with: + node-version: '16' + cache: 'npm' + + - name: Install node dependencies + run: npm ci + + - name: Run ESLint + run: npm run lint + build: - name: Test + name: github-writer runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -29,5 +49,19 @@ jobs: with: cmd: build-dev # will run `yarn build-dev` command + # - name: Testing github-writer + # uses: borales/actions-yarn@v4 + # with: + # cmd: test # will run `yarn test` command + + # - name: Run test in FUNCTIONAL + # uses: borales/actions-yarn@v4 + # with: + # cmd: test-functional # will run `yarn test-functional` command + + # - name: Run test in COMPAT + # uses: borales/actions-yarn@v4 + # with: + # cmd: test-compat # will run `yarn test-compat` command From bc551aa0b040b0817f723d2a54eb12d490055828 Mon Sep 17 00:00:00 2001 From: LostButton <71197188+LostButton@users.noreply.github.com> Date: Tue, 29 Nov 2022 14:49:41 -0500 Subject: [PATCH 06/19] removing cache --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ddb2285..ee06b8c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,8 +13,7 @@ jobs: - name: Setup node uses: actions/setup-node@v2 with: - node-version: '16' - cache: 'npm' + node-version: 16.x - name: Install node dependencies run: npm ci @@ -22,8 +21,9 @@ jobs: - name: Run ESLint run: npm run lint + build: - name: github-writer + name: Building Github-Writer runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 From 167aacd8fba7c1da3e151c5d01144862c2535b58 Mon Sep 17 00:00:00 2001 From: LostButton <71197188+LostButton@users.noreply.github.com> Date: Tue, 29 Nov 2022 14:58:24 -0500 Subject: [PATCH 07/19] eslint modifying --- .github/workflows/ci.yml | 30 +++++++++++++----------------- 1 file changed, 13 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ee06b8c..3151621 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,26 +2,22 @@ name: github-writer on: [push] jobs: - - lint: - name: ESLint + eslint: runs-on: ubuntu-latest steps: - - name: Check out code - uses: actions/checkout@v2 - - - name: Setup node - uses: actions/setup-node@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: - node-version: 16.x - - - name: Install node dependencies - run: npm ci - - - name: Run ESLint - run: npm run lint - - + node-version: 16 + - name: ESLint Code Review + uses: yousufkalim/eslint-action@latest + with: + github-token: ${{ secrets.GITHUB_TOKEN }} # Optional + eslint-args: '--ignore-path=.gitignore' + eslintrc: true # Set this to true if you want to use your own .eslintrc rules + extensions: 'js,jsx,ts,tsx' + auto-auto-fix-before-test: false # Set this to true if want to format and fix all the lint issue before testing + annotations: true build: name: Building Github-Writer runs-on: ubuntu-latest From 184f0c1b4b596f684cf5c00cb754ffb48696b2eb Mon Sep 17 00:00:00 2001 From: LostButton <71197188+LostButton@users.noreply.github.com> Date: Tue, 29 Nov 2022 15:23:09 -0500 Subject: [PATCH 08/19] proper lint --- .github/workflows/ci.yml | 39 +++++++++++++++++++++++---------------- 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3151621..0d36621 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,22 +2,29 @@ name: github-writer on: [push] jobs: - eslint: + run-linters: + name: Run linters runs-on: ubuntu-latest + steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 + - name: Check out Git repository + uses: actions/checkout@v2 + + - name: Set up Node.js + uses: actions/setup-node@v1 with: - node-version: 16 - - name: ESLint Code Review - uses: yousufkalim/eslint-action@latest + node-version: 12 + + # ESLint and Prettier must be in `package.json` + - name: Install Node.js dependencies + run: npm ci + + - name: Run linters + uses: wearerequired/lint-action@v2 with: - github-token: ${{ secrets.GITHUB_TOKEN }} # Optional - eslint-args: '--ignore-path=.gitignore' - eslintrc: true # Set this to true if you want to use your own .eslintrc rules - extensions: 'js,jsx,ts,tsx' - auto-auto-fix-before-test: false # Set this to true if want to format and fix all the lint issue before testing - annotations: true + eslint: true + prettier: true + build: name: Building Github-Writer runs-on: ubuntu-latest @@ -45,10 +52,10 @@ jobs: with: cmd: build-dev # will run `yarn build-dev` command - # - name: Testing github-writer - # uses: borales/actions-yarn@v4 - # with: - # cmd: test # will run `yarn test` command + - name: Testing github-writer + uses: borales/actions-yarn@v4 + with: + cmd: test # will run `yarn test` command # - name: Run test in FUNCTIONAL # uses: borales/actions-yarn@v4 From 6c2a9fce61a6d83fda011b5320763fee35f7b5c4 Mon Sep 17 00:00:00 2001 From: LostButton <71197188+LostButton@users.noreply.github.com> Date: Tue, 29 Nov 2022 15:30:32 -0500 Subject: [PATCH 09/19] redo --- .github/workflows/ci.yml | 39 ++++++++++++++++----------------------- 1 file changed, 16 insertions(+), 23 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d36621..3151621 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,29 +2,22 @@ name: github-writer on: [push] jobs: - run-linters: - name: Run linters + eslint: runs-on: ubuntu-latest - steps: - - name: Check out Git repository - uses: actions/checkout@v2 - - - name: Set up Node.js - uses: actions/setup-node@v1 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: - node-version: 12 - - # ESLint and Prettier must be in `package.json` - - name: Install Node.js dependencies - run: npm ci - - - name: Run linters - uses: wearerequired/lint-action@v2 + node-version: 16 + - name: ESLint Code Review + uses: yousufkalim/eslint-action@latest with: - eslint: true - prettier: true - + github-token: ${{ secrets.GITHUB_TOKEN }} # Optional + eslint-args: '--ignore-path=.gitignore' + eslintrc: true # Set this to true if you want to use your own .eslintrc rules + extensions: 'js,jsx,ts,tsx' + auto-auto-fix-before-test: false # Set this to true if want to format and fix all the lint issue before testing + annotations: true build: name: Building Github-Writer runs-on: ubuntu-latest @@ -52,10 +45,10 @@ jobs: with: cmd: build-dev # will run `yarn build-dev` command - - name: Testing github-writer - uses: borales/actions-yarn@v4 - with: - cmd: test # will run `yarn test` command + # - name: Testing github-writer + # uses: borales/actions-yarn@v4 + # with: + # cmd: test # will run `yarn test` command # - name: Run test in FUNCTIONAL # uses: borales/actions-yarn@v4 From 1eee8f3b28b04dc6ab04ffd7ccbb1ee43d65b103 Mon Sep 17 00:00:00 2001 From: LostButton <71197188+LostButton@users.noreply.github.com> Date: Tue, 29 Nov 2022 15:47:37 -0500 Subject: [PATCH 10/19] adding functional test --- .github/workflows/ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3151621..26e0496 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,11 +49,10 @@ jobs: # uses: borales/actions-yarn@v4 # with: # cmd: test # will run `yarn test` command - - # - name: Run test in FUNCTIONAL - # uses: borales/actions-yarn@v4 - # with: - # cmd: test-functional # will run `yarn test-functional` command + - name: Run test in FUNCTIONAL + uses: borales/actions-yarn@v4 + with: + cmd: test-functional # will run `yarn test-functional` command # - name: Run test in COMPAT # uses: borales/actions-yarn@v4 From 0a534213f2b7602f322e09456b6aa109ed816f03 Mon Sep 17 00:00:00 2001 From: LostButton <71197188+LostButton@users.noreply.github.com> Date: Tue, 29 Nov 2022 15:57:23 -0500 Subject: [PATCH 11/19] removing tests --- .github/workflows/ci.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 26e0496..9a76a2e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,18 +45,4 @@ jobs: with: cmd: build-dev # will run `yarn build-dev` command - # - name: Testing github-writer - # uses: borales/actions-yarn@v4 - # with: - # cmd: test # will run `yarn test` command - - name: Run test in FUNCTIONAL - uses: borales/actions-yarn@v4 - with: - cmd: test-functional # will run `yarn test-functional` command - - # - name: Run test in COMPAT - # uses: borales/actions-yarn@v4 - # with: - # cmd: test-compat # will run `yarn test-compat` command - From 98bfe2b299ddfe1e800ec05b51430f5ee4cdaae6 Mon Sep 17 00:00:00 2001 From: LostButton <71197188+LostButton@users.noreply.github.com> Date: Thu, 1 Dec 2022 09:58:29 -0500 Subject: [PATCH 12/19] testing with config --- .github/workflows/ci.yml | 5 ++++- .gitignore | 1 - tests/config.json | 9 +++++++++ 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 tests/config.json diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a76a2e..0c9e330 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,4 +45,7 @@ jobs: with: cmd: build-dev # will run `yarn build-dev` command - + - name: Run test in FUNCTIONAL + uses: borales/actions-yarn@v4 + with: + cmd: test-functional # will run `yarn test-functional` command diff --git a/.gitignore b/.gitignore index 13411c2..28feabd 100644 --- a/.gitignore +++ b/.gitignore @@ -5,5 +5,4 @@ /build/ /coverage/ /.yalc/ -/tests/config.json /*.lock diff --git a/tests/config.json b/tests/config.json new file mode 100644 index 0000000..d53076b --- /dev/null +++ b/tests/config.json @@ -0,0 +1,9 @@ +{ + "github" : { + "repo": "username/reponame", + "credentials": { + "name": "username", + "password": "password" + } + } + } From 852a9475cf3be8573029b973b3121f8c93ebc15a Mon Sep 17 00:00:00 2001 From: LostButton <71197188+LostButton@users.noreply.github.com> Date: Thu, 1 Dec 2022 10:09:06 -0500 Subject: [PATCH 13/19] removing functionality test adding compat --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c9e330..10cddcd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,9 @@ jobs: with: cmd: build-dev # will run `yarn build-dev` command - - name: Run test in FUNCTIONAL + - name: Run test in COMPAT uses: borales/actions-yarn@v4 with: - cmd: test-functional # will run `yarn test-functional` command + cmd: test-compat # will run `yarn build-dev` command + + From 59e049548f26c80a3faf09e2cca483c0aa6faf57 Mon Sep 17 00:00:00 2001 From: LostButton <71197188+LostButton@users.noreply.github.com> Date: Thu, 1 Dec 2022 10:16:13 -0500 Subject: [PATCH 14/19] running update emoji --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10cddcd..8502a11 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,6 +48,7 @@ jobs: - name: Run test in COMPAT uses: borales/actions-yarn@v4 with: + run: node ./dev/updateemojis.js cmd: test-compat # will run `yarn build-dev` command From cd128a9422d06f1fac881feabff3cbb3f1a7bafb Mon Sep 17 00:00:00 2001 From: LostButton <71197188+LostButton@users.noreply.github.com> Date: Thu, 1 Dec 2022 10:20:48 -0500 Subject: [PATCH 15/19] removing compat --- .github/workflows/ci.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8502a11..9a76a2e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,10 +45,4 @@ jobs: with: cmd: build-dev # will run `yarn build-dev` command - - name: Run test in COMPAT - uses: borales/actions-yarn@v4 - with: - run: node ./dev/updateemojis.js - cmd: test-compat # will run `yarn build-dev` command - From 5a84db26c46f7333617264702d8365b7b366f35d Mon Sep 17 00:00:00 2001 From: LostButton <71197188+LostButton@users.noreply.github.com> Date: Thu, 1 Dec 2022 10:45:36 -0500 Subject: [PATCH 16/19] updating lint to work --- .github/workflows/ci.yml | 4 ++++ package.json | 16 ++++++++-------- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a76a2e..8534b4e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,4 +45,8 @@ jobs: with: cmd: build-dev # will run `yarn build-dev` command + - name: Running Lint + uses: borales/actions-yarn@v4 + with: + cmd: lint # will run `yarn build-dev` command diff --git a/package.json b/package.json index d395576..879cd41 100644 --- a/package.json +++ b/package.json @@ -63,26 +63,26 @@ "linguist-languages": "^7.15.0" }, "devDependencies": { - "@ckeditor/ckeditor5-dev-utils": "^28.0.1", + "@ckeditor/ckeditor5-dev-utils": "^31.1.13", "chai": "^4.3.4", "copy-webpack-plugin": "^6.4.1", "eslint": "^7.32.0", "eslint-config-ckeditor5": "^3.1.1", "eslint-plugin-no-unsanitized": "^3.1.5", - "filemanager-webpack-plugin": "^2.0.5", - "istanbul-instrumenter-loader": "^3.0.1", + "filemanager-webpack-plugin": "^8.0.0", "html-to-json": "^0.6.0", + "istanbul-instrumenter-loader": "^2.0.0", "karma-sinon-chai": "^2.0.2", "karma-webpack": "^4.0.2", - "mocha": "^8.4.0", - "mrgit": "^1.0.0", + "mocha": "^10.1.0", + "mrgit": "^0.0.1", "postcss-loader": "^3.0.0", - "puppeteer": "10.0.0", + "puppeteer": "^19.3.0", "raw-loader": "^4.0.2", "sinon-chai": "^3.7.0", "style-loader": "^1.3.0", "svgo": "^2.3.0", - "webpack": "^4.46.0", + "webpack": "^5.75.0", "webpack-cli": "^3.3.12" }, "scripts": { @@ -92,7 +92,7 @@ "build": "webpack --mode production --config dev/webpack.config.js && bash ./dev/gzipsize.sh", "build-dev": "webpack --mode development --config dev/webpack.config.js && bash ./dev/gzipsize.sh", "emojis": "node ./dev/updateemojis.js", - "lint": "eslint --quiet --ignore-path .gitignore '**/*.js'", + "lint": "eslint --quiet --ignore-path .gitignore **/*.js", "svg-cleanup": "svgo --config=./dev/svgo.config.json ./src/app/icons/*.svg", "sync": "mrgit sync" }, From e85c6a416b5ac94af5b2d029b52b87319a829a9d Mon Sep 17 00:00:00 2001 From: LostButton <71197188+LostButton@users.noreply.github.com> Date: Thu, 1 Dec 2022 10:48:13 -0500 Subject: [PATCH 17/19] fixing errors --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 879cd41..70336e7 100644 --- a/package.json +++ b/package.json @@ -92,7 +92,7 @@ "build": "webpack --mode production --config dev/webpack.config.js && bash ./dev/gzipsize.sh", "build-dev": "webpack --mode development --config dev/webpack.config.js && bash ./dev/gzipsize.sh", "emojis": "node ./dev/updateemojis.js", - "lint": "eslint --quiet --ignore-path .gitignore **/*.js", + "lint": "eslint --quiet --ignore-path .gitignore '**/*.js'", "svg-cleanup": "svgo --config=./dev/svgo.config.json ./src/app/icons/*.svg", "sync": "mrgit sync" }, From 03d5b450990e93c8a9602a62429d5c5f0b8d5cbb Mon Sep 17 00:00:00 2001 From: LostButton <71197188+LostButton@users.noreply.github.com> Date: Thu, 1 Dec 2022 10:50:27 -0500 Subject: [PATCH 18/19] fixing errors --- package.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 70336e7..d395576 100644 --- a/package.json +++ b/package.json @@ -63,26 +63,26 @@ "linguist-languages": "^7.15.0" }, "devDependencies": { - "@ckeditor/ckeditor5-dev-utils": "^31.1.13", + "@ckeditor/ckeditor5-dev-utils": "^28.0.1", "chai": "^4.3.4", "copy-webpack-plugin": "^6.4.1", "eslint": "^7.32.0", "eslint-config-ckeditor5": "^3.1.1", "eslint-plugin-no-unsanitized": "^3.1.5", - "filemanager-webpack-plugin": "^8.0.0", + "filemanager-webpack-plugin": "^2.0.5", + "istanbul-instrumenter-loader": "^3.0.1", "html-to-json": "^0.6.0", - "istanbul-instrumenter-loader": "^2.0.0", "karma-sinon-chai": "^2.0.2", "karma-webpack": "^4.0.2", - "mocha": "^10.1.0", - "mrgit": "^0.0.1", + "mocha": "^8.4.0", + "mrgit": "^1.0.0", "postcss-loader": "^3.0.0", - "puppeteer": "^19.3.0", + "puppeteer": "10.0.0", "raw-loader": "^4.0.2", "sinon-chai": "^3.7.0", "style-loader": "^1.3.0", "svgo": "^2.3.0", - "webpack": "^5.75.0", + "webpack": "^4.46.0", "webpack-cli": "^3.3.12" }, "scripts": { From 8394a553b3fe31f7c065825d6293cdb350a4e29e Mon Sep 17 00:00:00 2001 From: LostButton <71197188+LostButton@users.noreply.github.com> Date: Thu, 1 Dec 2022 10:55:52 -0500 Subject: [PATCH 19/19] removing unused lint --- .github/workflows/ci.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8534b4e..f4914e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,22 +2,6 @@ name: github-writer on: [push] jobs: - eslint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: 16 - - name: ESLint Code Review - uses: yousufkalim/eslint-action@latest - with: - github-token: ${{ secrets.GITHUB_TOKEN }} # Optional - eslint-args: '--ignore-path=.gitignore' - eslintrc: true # Set this to true if you want to use your own .eslintrc rules - extensions: 'js,jsx,ts,tsx' - auto-auto-fix-before-test: false # Set this to true if want to format and fix all the lint issue before testing - annotations: true build: name: Building Github-Writer runs-on: ubuntu-latest @@ -49,4 +33,3 @@ jobs: uses: borales/actions-yarn@v4 with: cmd: lint # will run `yarn build-dev` command -