Skip to content

Commit

Permalink
fix: CI
Browse files Browse the repository at this point in the history
  • Loading branch information
TOsmanov committed Sep 26, 2024
1 parent c6fbb07 commit f900312
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: [14, 16, 17, 18, 19]
node-version: [16.x, 17.x, 18.x, 19.x]
include:
- os: [ubuntu-latest, windows-latest]
node-version: 14.x

steps:
- uses: actions/checkout@v3
Expand Down
1 change: 0 additions & 1 deletion test/linter.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1385,7 +1385,6 @@ function cli (args, cwd, clearLogs = true) {
if (clearLogs) {
clearLogsCmd = (isWin === true) ? 'DEL /Q /F ".markdownlin*" &&' : 'rm -f .markdownlin* &&'
}
console.log(`isWin: ${isWin}`, `args: ${args}`, `cwd: ${cwd}`, 'command', `${clearLogsCmd} node ${path.resolve('./linter')} ${args.join(' ')}`)
return new Promise(resolve => {
exec(`${clearLogsCmd} node ${path.resolve('./linter')} ${args.join(' ')}`,
{ cwd },
Expand Down

0 comments on commit f900312

Please sign in to comment.