Skip to content

chore: bump version to 0.1.1 for ESRP release #69

chore: bump version to 0.1.1 for ESRP release

chore: bump version to 0.1.1 for ESRP release #69

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Build client
run: npm run build --workspace=packages/client
- name: Build server
run: npm run build --workspace=packages/server
- name: Test client
run: npm run test --workspace=packages/client --if-present
- name: Test server
run: npm run test --workspace=packages/server --if-present
lint:
name: Lint & Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- run: npx biome ci .
python-example:
name: Python Example
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: pip install -r examples/python/requirements.txt
- name: Syntax check
run: python -m py_compile examples/python/server.py