Skip to content

Bump ip from 2.0.0 to 2.0.1 #11

Bump ip from 2.0.0 to 2.0.1

Bump ip from 2.0.0 to 2.0.1 #11

Workflow file for this run

name: build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install pub-sub-es
run: npm ci
- name: Build pub-sub-es
run: npm run build --if-present
- name: Test pub-sub-es
run: npm test