File tree Expand file tree Collapse file tree 2 files changed +34
-2
lines changed Expand file tree Collapse file tree 2 files changed +34
-2
lines changed Original file line number Diff line number Diff line change 1+ name : Parser tests
2+ on :
3+ push :
4+ workflow_dispatch :
5+
6+ jobs :
7+ container-job :
8+ runs-on : ubuntu-latest
9+ container : node:20.12.0-alpine
10+
11+ steps :
12+ - name : checkout
13+ uses : actions/checkout@v3
14+
15+ - name : deps
16+ run : yarn
17+
18+ - name : build
19+ run : yarn build
20+
21+ - name : parser
22+ run : cd ./packages/parser && yarn test
23+
24+ - name : deparser
25+ run : cd ./packages/deparser && yarn test
26+
27+ - name : enums
28+ run : cd ./packages/enums && yarn test
29+
30+ - name : types
31+ run : cd ./packages/types && yarn test
32+
33+ - name : transform
34+ run : cd ./packages/transform && yarn test
Original file line number Diff line number Diff line change @@ -15,11 +15,9 @@ it('enums', () => {
1515 case e . A_Expr_Kind . AEXPR_NOT_BETWEEN_SYM :
1616 case e . A_Expr_Kind . AEXPR_NOT_DISTINCT :
1717 case e . A_Expr_Kind . AEXPR_NULLIF :
18- case e . A_Expr_Kind . AEXPR_OF :
1918 case e . A_Expr_Kind . AEXPR_OP :
2019 case e . A_Expr_Kind . AEXPR_OP_ALL :
2120 case e . A_Expr_Kind . AEXPR_OP_ANY :
22- case e . A_Expr_Kind . AEXPR_PAREN :
2321 case e . A_Expr_Kind . AEXPR_SIMILAR :
2422 expect ( exprKind ) . toBeDefined ( ) ;
2523 break ;
You can’t perform that action at this time.
0 commit comments