Skip to content

0.0.3

0.0.3 #3

Workflow file for this run

---
name: Node.js Package
on:
push:
tags:
- 'v*'
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 'lts/*'
registry-url: https://registry.npmjs.org/
- run: npm ci
- name: Run an Voyager 1 instance in the background
run: npm run start:host1:background
- name: Run an Voyager 2 instance in the background
run: npm run start:host2:background
- run: npm test
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}