Skip to content

fix: handle AExpr and NullTest nodes in SQL parsing (#354) #217

fix: handle AExpr and NullTest nodes in SQL parsing (#354)

fix: handle AExpr and NullTest nodes in SQL parsing (#354) #217

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v2
with:
node-version: 20.x
cache: "pnpm"
- run: pnpm install
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
publish: pnpm run release
version: pnpm run version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}