From 897371330357620ddaef65e43cc6d20e818272ab Mon Sep 17 00:00:00 2001 From: danstarns Date: Mon, 23 Sep 2024 12:44:21 -0700 Subject: [PATCH 1/2] feat: add windows to dev runners for DX --- .github/workflows/quality.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index b23cbc3846..9de1f4c7af 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -1,4 +1,5 @@ -name: GrapesJS Qualty Checks +name: GrapesJS Quality Checks + on: push: branches: [dev] @@ -7,7 +8,10 @@ on: jobs: quality-checks: - runs-on: ubuntu-latest + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - uses: ./.github/actions/setup-project From 42c0de15812f7e2538d3b3928c33de015f057f09 Mon Sep 17 00:00:00 2001 From: danstarns Date: Wed, 9 Oct 2024 08:33:28 -0700 Subject: [PATCH 2/2] config: remove linebreak style --- .eslintrc.js | 1 - 1 file changed, 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 9e0de5ac04..6744e4ee44 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -48,7 +48,6 @@ module.exports = { '@typescript-eslint/no-unsafe-function-type': 'off', '@typescript-eslint/no-non-null-asserted-optional-chain': 'off', '@typescript-eslint/no-wrapper-object-types': 'off', - 'linebreak-style': ['error', 'unix'], 'max-len': ['error', { code: 300 }], 'no-multiple-empty-lines': ['error', { max: 1, maxEOF: 1 }], },