Skip to content

Commit

Permalink
ci(global): INFRA-648 finish CI job
Browse files Browse the repository at this point in the history
  • Loading branch information
SavelevMatthew committed Nov 25, 2024
1 parent 16c42a3 commit ece9242
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/nodejs.condo.ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,16 @@ jobs:
- name: Install root dependencies
run: |
yarn workspaces focus root
- name: Check JS code-style rules
- name: Check basic JS code-style rules
run: |
yarn lint:code
- name: Check strict JS code-style rules on changed files
run: |
if [ -n "${ALL_CHANGED_FILES}" ]; then
yarn lint:strict ${ALL_CHANGED_FILES}
else
echo "No relevant files changed. Skipping lint."
fi
- name: Check styling rules
run: |
yarn lint:styles
Expand Down

0 comments on commit ece9242

Please sign in to comment.