ci: break tests of parsers into mutiple parts

This commit is contained in:
wewoor 2023-05-12 11:53:00 +08:00
parent 4becd4bc00
commit 10645087de

View File

@ -62,9 +62,20 @@ jobs:
path: node_modules path: node_modules
key: node_modules-${{ hashFiles('**/package-temp-dir/yarn.lock') }} 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 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: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [setup] needs: [setup]