Skip to content

Commit b16ac29

Browse files
committed
⚒ remove && because Windows doesn't support it
https://github.com/mysticatea/eslint-plugin-node/runs/276285622#step:5:7
1 parent eca48c8 commit b16ac29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ jobs:
8989
- name: Install ESLint ${{ matrix.eslint }}
9090
# We need to execute this command twice because of npm's bug.
9191
# See also: https://npm.community/t/error-node-modules-staging-eslint-e7cf6846-node-modules-eslint
92-
run: >
93-
npm install --no-save eslint@${{ matrix.eslint }} &&
92+
run: |
93+
npm install --no-save eslint@${{ matrix.eslint }}
9494
npm install --no-save eslint@${{ matrix.eslint }}
9595
- name: Test
9696
run: npm run -s test:ci

0 commit comments

Comments
 (0)