Skip to content

release/0.3.2

release/0.3.2 #36

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:
types:
- opened
- synchronize
- reopened
- ready_for_review
jobs:
tests:
if: github.event.pull_request.draft == false
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