We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b4ecc3 commit 4becd4bCopy full SHA for 4becd4b
.github/workflows/nodejs.yml
@@ -62,10 +62,8 @@ jobs:
62
path: node_modules
63
key: node_modules-${{ hashFiles('**/package-temp-dir/yarn.lock') }}
64
65
- - name: Run Unit Test
66
- run: |
67
- export NODE_OPTIONS="--max_old_space_size=4096"
68
- yarn test
+ - name: Test FlinkSQL
+ run: npx jest test/parser/flinksql
69
70
build:
71
runs-on: ubuntu-latest
tsconfig.json
@@ -8,7 +8,7 @@
8
"module": "ESNext",
9
"moduleResolution": "node",
10
"declaration": true,
11
- "noUnusedLocals": true,
+ "noUnusedLocals": false,
12
"noUnusedParameters": false,
13
"allowSyntheticDefaultImports": true,
14
"esModuleInterop": true,
0 commit comments