Bump version #71
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: "CI" | |
on: | |
push: | |
branches: | |
pull_request: | |
jobs: | |
"node-test": | |
name: "Build and test on Node.js" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout this repo" | |
uses: actions/checkout@v3 | |
- name: "Setup Node.js" | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "16.x" | |
cache: "npm" | |
- name: "Install npm dependencies" | |
run: "npm ci" | |
- name: "Checkout hrana-test-server" | |
uses: actions/checkout@v3 | |
with: | |
repository: "libsql/hrana-test-server" | |
path: "hrana-test-server" | |
- name: "Setup Python" | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
cache: "pip" | |
- name: "Install pip dependencies" | |
run: "pip install -r hrana-test-server/requirements.txt" | |
- name: "Build" | |
run: "npm run build" | |
- name: "Test version 1 over WebSockets" | |
run: "python hrana-test-server/server_v1.py npm test" | |
env: {"VERSION": "1", "URL": "ws://localhost:8080"} | |
- name: "Test version 2 over WebSockets" | |
run: "python hrana-test-server/server_v2.py npm test" | |
env: {"VERSION": "2", "URL": "ws://localhost:8080"} | |
- name: "Test version 2 over HTTP" | |
run: "python hrana-test-server/server_v2.py npm test" | |
env: {"VERSION": "2", "URL": "http://localhost:8080"} | |
- name: "Example" | |
run: "python hrana-test-server/server_v2.py node examples/readme_example.js" |