Skip to content

Commit

Permalink
UBERF-5886: fix todo reorder on click (#4904)
Browse files Browse the repository at this point in the history
Signed-off-by: Eduard Aksamitov <e@euaaaio.ru>
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
  • Loading branch information
euaaaio authored and haiodo committed Mar 9, 2024
1 parent 1ff82a9 commit 488f976
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 7 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,15 +129,26 @@ jobs:
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }}
restore-keys: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }}

- name: Apply templates...
run: node common/scripts/install-run-rush.js apply-templates

- name: Check templates
run: |
echo '================================================================'
echo 'Checking for diff files'
echo '================================================================'
git diff '*.js' '*.ts' '*.svelte' '*.json' | cat
[ -z "$(git diff --name-only '*.js' '*.ts' '*.svelte' '*.json' | cat)" ]
echo '================================================================'
- name: Formatting...
run: node common/scripts/install-run-rush.js fast-format
- name: Check files formatting
run: |
echo '================================================================'
echo 'Checking for diff files'
echo '================================================================'
git diff '*.ts' '*.svelte' | cat
[ -z "$(git diff --name-only '*.ts' '*.svelte' | cat)" ]
git diff '*.js' '*.ts' '*.svelte' '*.json' | cat
[ -z "$(git diff --name-only '*.js' '*.ts' '*.svelte' '*.json' | cat)" ]
echo '================================================================'
test:
needs: build
Expand Down
3 changes: 2 additions & 1 deletion packages/platform-rig/profiles/default/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"esModuleInterop": true,
"rootDir": "./src",
"outDir": "./lib",
"incremental": true
"incremental": true,
"isolatedModules": true
}
}
4 changes: 3 additions & 1 deletion packages/platform-rig/profiles/model/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
"skipDefaultLibCheck": true,
"declarationMap": true,
"esModuleInterop": true,
"incremental": true
"incremental": true,
"types" : [],
"isolatedModules": true
}
}
3 changes: 2 additions & 1 deletion packages/platform-rig/profiles/node/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"esModuleInterop": true,
"rootDir": "./src",
"outDir": "./lib",
"incremental": true
"incremental": true,
"isolatedModules": true
}
}
3 changes: 2 additions & 1 deletion packages/platform-rig/profiles/package/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"esModuleInterop": true,
"rootDir": "./src",
"outDir": "./lib",
"incremental": true
"incremental": true,
"isolatedModules": true
}
}
4 changes: 3 additions & 1 deletion packages/platform-rig/profiles/ui/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
"esnext",
"dom"
],
"incremental": true
"incremental": true,
"types": ["jest"],
"isolatedModules": true
}
}

0 comments on commit 488f976

Please sign in to comment.