diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 56501ce..5c9f215 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -62,9 +62,20 @@ jobs: path: node_modules key: node_modules-${{ hashFiles('**/package-temp-dir/yarn.lock') }} - - name: Test FlinkSQL + - name: Test utils + run: npx jest test/utils + - name: Test FLinkSQL run: npx jest test/parser/flinksql - + - name: Test SparkSQL + run: npx jest test/parser/spark + - name: Test GenericSQL + run: npx jest test/parser/generic + - name: Test HiveSQL + run: npx jest test/parser/hive + - name: Test PGSQL + run: npx jest test/parser/pgsql + - name: Test PLSQL + run: npx jest test/parser/plsql build: runs-on: ubuntu-latest needs: [setup]