Skip to content

Commit d8d69a7

Browse files
authored
Merge pull request #9 from funktechno/f/lastlink
F/lastlink
2 parents 4f40871 + 808faeb commit d8d69a7

2 files changed

Lines changed: 18 additions & 2 deletions

File tree

.github/workflows/tests.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,19 @@ jobs:
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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)