Skip to content

Commit

Permalink
Merge branch 'main' into feat/enable-ssh-for-azure-docker
Browse files Browse the repository at this point in the history
  • Loading branch information
hughcrt authored May 8, 2024
2 parents a029053 + 34a020b commit e14c8ca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.0",
"private": "true",
"scripts": {
"start": "npm run migrate:db && concurrently -n frontend,backend,ml,radar \"npm run start:frontend\" \"npm run start:backend\"",
"start": "concurrently -n frontend,backend \"npm run start:frontend\" \"npm run start:backend\"",
"start:frontend": "npm -w packages/frontend run start",
"start:backend": "npm -w packages/backend run start",
"start:radar": "npm -w packages/backend run start:radar",
Expand Down
5 changes: 5 additions & 0 deletions packages/backend/src/checks/runChecks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ async function sqlEval(sqlFragment: any, run: any): Promise<boolean> {
delete run.context
delete run.radarId
delete run.runId
delete run.results
delete run.passed
delete run.details

if (!run.id) return passed

await sql.begin(async (tx) => {
// create a virtual table with the run columns, without the id, project_id and is_public columns
Expand Down

0 comments on commit e14c8ca

Please sign in to comment.