Skip to content

Commit

Permalink
remove duplicated path
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudTT committed Sep 18, 2024
1 parent a887cce commit 432a8cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint-and-license-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
node-version: '16'

- name: Install dependencies
working-directory: tt-studio/app/frontend
working-directory: app/frontend
run: npm install

- name: Run ESLint
working-directory: tt-studio/app/frontend
working-directory: app/frontend
id: run_eslint
run: |
set +e
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
const lintOutput = process.env.CLEAN_OUTPUT;
const issueNumber = context.issue.number || context.payload.pull_request.number;
const owner = context.repo.owner;
const repo = context.repo.repo;
const repo = repo.repo;
if (lintOutput) {
const commentBody = `## ESLint Errors:\n\`\`\`\n${lintOutput}\n\`\`\`\nPlease fix the errors mentioned above.`;
Expand Down

0 comments on commit 432a8cc

Please sign in to comment.