Skip to content

Commit 4becd4b

Browse files
committed
build: allow noUnusedLocals
1 parent 1b4ecc3 commit 4becd4b

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/nodejs.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,8 @@ jobs:
6262
path: node_modules
6363
key: node_modules-${{ hashFiles('**/package-temp-dir/yarn.lock') }}
6464

65-
- name: Run Unit Test
66-
run: |
67-
export NODE_OPTIONS="--max_old_space_size=4096"
68-
yarn test
65+
- name: Test FlinkSQL
66+
run: npx jest test/parser/flinksql
6967

7068
build:
7169
runs-on: ubuntu-latest

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"module": "ESNext",
99
"moduleResolution": "node",
1010
"declaration": true,
11-
"noUnusedLocals": true,
11+
"noUnusedLocals": false,
1212
"noUnusedParameters": false,
1313
"allowSyntheticDefaultImports": true,
1414
"esModuleInterop": true,

0 commit comments

Comments
 (0)