Skip to content

release/0.3.1

release/0.3.1 #24

Workflow file for this run

name: ic-websocket-sdk-js tests
# only run when a commit is pushed to the main branch
on:
push:
branches:
- main
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"
cache-dependency-path: "package-lock.json"
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test