Docs on how to use ToField
to query custom tuples in IN
clause
#1998
This file contains 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: Check JavaScript | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
name: 'Checkout' | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
name: 'Setup Node' | |
- run: cd lib/IHP/DataSync && npm install | |
name: 'Install NPM Packages' | |
- run: cd lib/IHP/DataSync && npm run typecheck | |
name: 'Typechecking DataSync modules' | |
- run: cd lib/IHP/DataSync && npm run test | |
name: 'Testing DataSync modules' |