Fix walk function to traverse WithClause and union larg/rarg nodes #683
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Parser tests | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| parser-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v3 | |
| - name: deps | |
| run: yarn | |
| - name: build | |
| run: yarn build | |
| - name: deparser | |
| run: cd ./packages/deparser && yarn test | |
| - name: proto-parser | |
| run: cd ./packages/proto-parser && yarn test | |
| - name: utils | |
| run: cd ./packages/utils && yarn test | |
| - name: transform | |
| run: cd ./packages/transform && yarn test | |
| - name: traverse | |
| run: cd ./packages/traverse && yarn test |