diff --git a/.github/workflows/runTestsOnPush.yml b/.github/workflows/runTestsOnPush.yml index 6bcc7da12..9886a97a1 100644 --- a/.github/workflows/runTestsOnPush.yml +++ b/.github/workflows/runTestsOnPush.yml @@ -10,6 +10,10 @@ jobs: uses: Borales/actions-yarn@master with: args: install + - name: Lint + uses: Borales/actions-yarn@master + with: + args: lint - name: Test uses: Borales/actions-yarn@master with: diff --git a/package.json b/package.json index 959cf1736..01dc74561 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "tsoa", "description": "Build swagger-compliant REST APIs using TypeScript and Node", - "version": "2.4.11", + "version": "2.5.1", "main": "./dist/index.js", "typings": "./dist/index.d.ts", "keywords": [ diff --git a/tslint.json b/tslint.json index cd0264bc8..77f2536e0 100644 --- a/tslint.json +++ b/tslint.json @@ -24,6 +24,7 @@ "no-namespace": [ false ], + "object-literal-key-quotes": false, "ban-types": false }, "linterOptions": {