Skip to content

Add host option to server #29

Add host option to server

Add host option to server #29

Workflow file for this run

name: Deployment Pipeline
on:
workflow_dispatch:
push:
branches: ["main"]
tags:
- "v*"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- name: Setup Node.js environment
uses: actions/setup-node@v3.8.1
with:
node-version-file: .nvmrc
- name: Install dependencies
run: npm ci
- name: Run service tests
run: npm -w src/service test
- name: Run plugin tests
run: npm -w src/plugin test --watch=false --coverage
publish-service:
runs-on: ubuntu-latest
needs: test
if: startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/checkout@v4.1.0
with:
fetch-depth: 2
- name: Setup Node.js environment
uses: actions/setup-node@v3.8.1
with:
node-version-file: .nvmrc
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: npm ci
- name: Build sources
run: npm -w src/service run build
- name: Check for changes in service directory
id: check-changes
run: |
if git diff --quiet HEAD^ HEAD -- ./src/service/; then
echo "::set-output name=changed::false"
else
echo "::set-output name=changed::true"
fi
- name: Publish package
if: steps.check-changes.outputs.changed == 'true'
run: npm -w src/service publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}