File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717 node-version : current
1818 - run : npm ci
1919 - run : npm test
20+ - name : upload junit
21+ uses : actions/upload-artifact@v1
22+ with :
23+ name : junit
24+ path : junit.xml
25+ - uses : ashley-taylor/junit-report-annotations-action@1.3
26+ if : always()
27+ with :
28+ access-token : ${{ secrets.GITHUB_TOKEN }}
29+ path : junit.xml
30+ - run : npm run test:coverage
31+ - name : upload code coverage
32+ uses : actions/upload-artifact@v1
33+ with :
34+ name : Report-CodeCoverage
35+ path : coverage
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ sql ddl parser to support extensions for drawio
44## Getting started
55* how to use:
66``` typescript
7- import {SqlSimpleParser } from " @funktechno/sqlsimpleparser"
7+ import { SqlSimpleParser } from " @funktechno/sqlsimpleparser"
88
9- var sample = ` CREATE TABLE "humanresources_department" (
9+ var sql = ` CREATE TABLE "humanresources_department" (
1010 "departmentid" serial NOT NULL,
1111 "name" Name NOT NULL,
1212 "groupname" Name NOT NULL,
You can’t perform that action at this time.
0 commit comments