UNPKG

w-comor-socketio

Version:

A http and websocket communicator in nodejs and browser. Mapping functions from nodejs to other end points, like a simple RPC.

24 lines (19 loc) 444 B
name: Node.js CI on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [20.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - run: npm cache clean -f - run: npm install - run: npm test env: CI: true