DOCSP-33414 Add section on FTS to RQL reference #1396
Workflow file for this run
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: Node.js SDK v12 CI Tests | |
on: | |
pull_request: | |
paths: | |
- "examples/node/v12/**" | |
jobs: | |
build: | |
name: Run Node.js SDK v12 Tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install Dependencies | |
working-directory: examples/node/v12 | |
run: npm install | |
- name: Test JavaScript | |
working-directory: examples/node/v12 | |
run: npm run test:js | |
- name: Test TypeScript | |
working-directory: examples/node/v12 | |
run: npm run test:ts |