Skip to content

Commit

Permalink
Fix: Node 14 not supported anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
ChakshuGautam committed Jan 24, 2023
1 parent e9ff74e commit 4cfdb60
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [14, 16, 18]
node-version: [16, 18]

steps:
- uses: actions/checkout@v2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ describe('CsvAdapterService', () => {
`DROP TABLE IF EXISTS dimensions."${dimensionColumns[i]}"`,
);
}
await service.prisma.$executeRawUnsafe(
`select 'drop table if exists "' || tablename || '" cascade;'
from pg_tables where schemaname = 'datasets';`,
);

/*
async csvToDomainSpec(csvPath: string,
dataFieldColumn: string,
Expand Down

0 comments on commit 4cfdb60

Please sign in to comment.