diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 966c92c4..c609f7e7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,11 +9,6 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] node: [17, 18, 19, 20, 21, 22, 23] - exclude: - - os: windows-latest - node: 22 - - os: windows-latest - node: 23 steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node }} @@ -21,11 +16,7 @@ jobs: with: node-version: ${{ matrix.node }} - run: npm install - - if: ${{ matrix.os == 'windows-latest' }} - run: | - npm run eslint -- --rule 'linebreak-style: [2, windows]' - - if: ${{ matrix.os == 'ubuntu-latest' }} - run: npm run eslint + - run: npm run eslint - run: npm test - run: npm run build - name: Coveralls Parallel diff --git a/eslint.config.js b/eslint.config.js index 9cf393c9..bd26edc4 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -5,10 +5,6 @@ module.exports = [ "error", 2 ], - "linebreak-style": [ - "error", - "unix" - ], "quotes": [ "error", "single"