Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-osalazarlizano committed Jun 18, 2024
1 parent 5c0ea12 commit 9b8fb93
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
CHANGED_FILES: ${{ steps.changed-files.outputs.changed_files }}
with:
script: |
const { CHANGED_FILES } = process.env
const { CHANGED_FILES } = process.env;
const fs = require('fs');
const path = require('path');
Expand Down Expand Up @@ -72,8 +72,8 @@ jobs:
}
const paths = new Set(CHANGED_FILES.split(" ")
.map(path => path.substring(0, path.indexOf("/") + 1))
.filter(path => path.length > 0 && !path.startsWith('.')));
.map(x => x.substring(0, x.indexOf("/") + 1))
.filter(x => x.length > 0 && !x.startsWith('.')));
for (const rootPath of paths)
{
Expand Down

0 comments on commit 9b8fb93

Please sign in to comment.